gnu: htseq: Switch to pyproject.

* gnu/packages/bioinformatics.scm (htseq):
[build-system]: Switch to pyproject-build-system.
[arguments]: Remove uneeded field.
[native-inputs]: Add python-setuptools, python-wheel.

Change-Id: I5d9ccff56212413d76fa31f02efa5008dd709d97
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves 2025-07-31 19:02:06 +02:00 committed by Sharlatan Hellseher
parent 76abf43e47
commit dcca59cf9f
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -8748,18 +8748,7 @@ HMMs).")
(sha256
(base32
"1kbr4ydjjhizz6r5m3xd4f0wj7qnn8zs0vnzghhgaa0yhbya5r19"))))
(build-system python-build-system)
(arguments
(list
#:phases
'(modify-phases %standard-phases
;; Avoid rebuilding the extension. Everything is built during the
;; 'install phase anyway.
(delete 'build)
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "pytest" "-v")))))))
(build-system pyproject-build-system)
(propagated-inputs
(list python-matplotlib
python-numpy
@ -8769,6 +8758,8 @@ HMMs).")
python-pandas
python-pytest
python-scipy
python-setuptools
python-wheel
swig))
(home-page "https://github.com/htseq")
(synopsis "Framework for analyzing high-throughput sequencing data")