From c8bc423b874a9b5abd7804be4d96d9d4a24f3023 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Wed, 25 Mar 2026 19:51:40 +0100 Subject: [PATCH] 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 --- gnu/packages/bioinformatics.scm | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index c291579fb2..9a476f3d1f 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))