summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-03-25 19:51:40 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-03-28 22:00:01 +0000
commitc8bc423b874a9b5abd7804be4d96d9d4a24f3023 (patch)
tree8ff04c58197b64556a5702e948ce4420f1f9e523
parent31affbfd60e9eb0588f1176b73a7c23cb3832947 (diff)
gnu: python-pysam: Update to 0.23.3.
* gnu/packages/bioinformatics.scm (python-pysam): Update to 0.23.3. [native-inputs]: Replace python-cython-0 by python-cython. Remove python-wheel. Change-Id: I4e93e7ab1a9e763d2d84b6b7601a64e918b0eda8 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/bioinformatics.scm8
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index c291579fb23..9a476f3d1fc 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -6070,17 +6070,16 @@ subgroups.")
(define-public python-pysam
(package
(name "python-pysam")
- (version "0.23.0")
+ (version "0.23.3")
(source (origin
(method git-fetch)
- ;; Test data is missing on PyPi.
(uri (git-reference
(url "https://github.com/pysam-developers/pysam")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
- "0hk0ks6kqsm8252d0v1lw2d22x1awmxcr165nnhyacwbqh246skl"))
+ "1kb70fp9mnjl4czhwiahb192lwkq1j357b774ddg533ibj3h7gcz"))
(modules '((guix build utils)))
(snippet '(begin
;; FIXME: Unbundle samtools and bcftools.
@@ -6118,10 +6117,9 @@ subgroups.")
(inputs
(list ncurses curl zlib))
(native-inputs
- (list python-cython-0
+ (list python-cython
python-pytest
python-setuptools
- python-wheel
;; Dependencies below are are for tests only.
samtools
bcftools))