From 0b875355d56de235871dfdc81aaab3394f4668c2 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Mon, 31 Mar 2025 08:18:38 +0200 Subject: [PATCH] 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 --- 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 45995133268ffafbf1e82ed4ddd086f51ff04df0..80cba678c43369f6c2792ed58c42f436a2207523 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -10846,13 +10846,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))