1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: crossmap: Use pyproject-build-system.

* gnu/packages/bioinformatics.scm (crossmap): [build-system]: Use
pyproject.
[native-inputs]: Add python-setuptools and python-wheel.

Change-Id: I1750685ad8037d004fc1d5fc4f7f76613f257c17
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Kjartan Oli Agustsson
2025-06-18 00:44:35 +00:00
committed by Sharlatan Hellseher
parent 313519348b
commit 1a5fa2c3b2

View File

@@ -6219,12 +6219,16 @@ time.")
;; Delete compiled Python files.
(for-each delete-file (find-files "." "\\.pyc$"))
(delete-file-recursively ".eggs")))))
(build-system python-build-system)
(build-system pyproject-build-system)
(inputs
(list python-bx-python python-numpy python-pybigwig python-pysam
zlib))
(native-inputs
(list python-cython python-nose python-pyparsing))
(list python-cython
python-nose
python-pyparsing
python-setuptools
python-wheel))
(home-page "https://crossmap.sourceforge.net/")
(synopsis "Convert genome coordinates between assemblies")
(description