guix_mirror_bot pushed a commit to branch master in repository guix. commit 66ab4c5bc1c27e3b7f9c4d0427eab9104efc39f6 Author: Kjartan Oli Agustsson <kjartan...@outlook.com> AuthorDate: Wed Jun 18 02:24:37 2025 +0000
gnu: python-pyliftover: Use pyproject-build-system. * gnu/packages/bioinformatics.scm (python-pyliftover): [build-system]: Use pyproject. [native-inputs]: Add python-setuptools and python-wheel. Change-Id: Ifcdbfba497527edd82625a20e4baf6b2504f3f92 Signed-off-by: Sharlatan Hellseher <sharlata...@gmail.com> --- gnu/packages/bioinformatics.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 1cd275159b..f254cad048 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -23713,10 +23713,12 @@ broadly useful for viral amplicon-based sequencing.") (sha256 (base32 "1j8jp9iynv2l3jv5pr0pn0p3azlama1bqg233piglzm6bqh3m2m3")))) - (build-system python-build-system) + (build-system pyproject-build-system) (arguments `(#:tests? #false)) ; the tests access the web (native-inputs - (list python-pytest)) + (list python-pytest + python-setuptools + python-wheel)) (home-page "https://github.com/konstantint/pyliftover") (synopsis "Python implementation of UCSC liftOver genome coordinate conversion") (description