sharlatan pushed a commit to branch python-team in repository guix. commit da3e899b3bd38c7586da7eefd809feb70caefb3c 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 659e7cfea0..1351a15529 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))