summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2025-12-15 21:57:33 +0100
committerAndreas Enge <andreas@enge.fr>2025-12-17 11:20:21 +0100
commit146da6cf126d1bb5ae7ee939196137d29e90107d (patch)
tree779e59ee973fe451ec194d68d0c982e82e8341db /gnu
parent91a164d588e776347fa990b377de14e079080dd5 (diff)
gnu: python-pypairix: Update to 0.3.9.
* gnu/packages/bioinformatics.scm (python-pypairix): Update to 0.3.9. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-pytest and python-setuptools. Change-Id: I0fbe88438fcdcb304e12eac4156e94959e6db174 Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/bioinformatics.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 7b4f9be885..80b59d6ad0 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -20101,7 +20101,7 @@ allowing the insertion of arbitrary types into the tree.")
(define-public python-pypairix
(package
(name "python-pypairix")
- (version "0.3.8")
+ (version "0.3.9")
;; The tarball on pypi does not include the makefile to build the
;; programs.
(source
@@ -20114,7 +20114,7 @@ allowing the insertion of arbitrary types into the tree.")
(sha256
(base32
"1jlxj3xa67q1i58pmbi6imhvl6f5w9m5qxv0xd45ba86mp8mnmvz"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(arguments
(list
#:phases
@@ -20130,6 +20130,9 @@ allowing the insertion of arbitrary types into the tree.")
(add-after 'install 'install-programs
(lambda _
(copy-recursively "bin" (string-append #$output "/bin")))))))
+ (native-inputs
+ (list python-pytest
+ python-setuptools))
(inputs
(list zlib))
(home-page "https://github.com/4dn-dcic/pairix")