andreas pushed a commit to branch python-team in repository guix. commit 812356cb36d939cdd6bcf139218d57abf87cf1aa Author: Nicolas Graves <ngra...@ngraves.fr> 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 <sharlata...@gmail.com> --- 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 0267bbd6a9..d6dfae635b 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -10829,13 +10829,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))