From 1a5fa2c3b2b85275e26da4f84698355121ec1f84 Mon Sep 17 00:00:00 2001 From: Kjartan Oli Agustsson Date: Wed, 18 Jun 2025 00:44:35 +0000 Subject: [PATCH] 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 --- gnu/packages/bioinformatics.scm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index a469f8c78e..af12ca27ea 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -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