sharlatan pushed a commit to branch python-team
in repository guix.
commit b64614a4eb2aaf60fadd1013a11a4092aa24aae0
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Mar 31 08:18:38 2025 +0200
gnu: rseqc: Switch to pyproject-build-system.
* gnu/packages/bioinformatics.scm (rseqc):
[build-system]: Switch to pyproject-build-system.
[inputs]: Sort inputs. Add python-pyparsing, python-setuptools,
python-wheel.
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/bioinformatics.scm | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 5d46b9a248..d67f84101f 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -10828,13 +10828,16 @@ BAM and Wiggle files in both transcript-coordinate
and genomic-coordinate.")
(sha256
(base32
"0gbb9iyb7swiv5455fm5rg98r7l6qn27v564yllqjd574hncpx6m"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(inputs
- (list python-cython
- python-bx-python
+ (list python-bx-python
+ python-cython
+ python-numpy
python-pybigwig
+ python-pyparsing
python-pysam
- python-numpy
+ python-setuptools
+ python-wheel
zlib))
(native-inputs
(list python-nose))