summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-08-03 18:54:44 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:28 +0100
commited8af88ee63f91756a14af866ce2ed39eb3c3e62 (patch)
treeae5246c6bf288cd5b181124fe5ebab0b074e6610
parent6bbe0a63cc99eb69d6ce0c59794d26643f17ae37 (diff)
gnu: python-pegasusio: Update to 0.11.0.
* gnu/packages/bioinformatics.scm (python-pegasusio): Update to 0.11.0. [propagated-inputs]: Remove python-anndata. [native-inputs]: Remove python-wheel. Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r--gnu/packages/bioinformatics.scm23
1 files changed, 12 insertions, 11 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 9c699a375d4..4716f76ae04 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -3492,19 +3492,21 @@ three prime UTR.")
3492(define-public python-pegasusio 3492(define-public python-pegasusio
3493 (package 3493 (package
3494 (name "python-pegasusio") 3494 (name "python-pegasusio")
3495 (version "0.9.1") 3495 (version "0.11.0")
3496 (source (origin 3496 (source
3497 (method url-fetch) 3497 (origin
3498 (uri (pypi-uri "pegasusio" version)) 3498 (method git-fetch)
3499 (sha256 3499 (uri (git-reference
3500 (base32 3500 (url "https://github.com/lilab-bcb/pegasusio")
3501 "1vxi6z7jlznp7sgzlbjsl1dzf1h7ypinllnls0lb2773a8vavg5x")))) 3501 (commit version)))
3502 (file-name (git-file-name name version))
3503 (sha256
3504 (base32 "1v0zcpk13ckw2ab3i3cgqjz66syirx3yplwwv024mpcwzahv826r"))))
3502 (build-system pyproject-build-system) 3505 (build-system pyproject-build-system)
3503 ;; There are no tests. 3506 ;; There are no tests.
3504 (arguments (list #:tests? #false)) 3507 (arguments (list #:tests? #false))
3505 (propagated-inputs 3508 (propagated-inputs
3506 (list python-anndata 3509 (list python-cython
3507 python-cython
3508 python-docopt 3510 python-docopt
3509 python-h5py 3511 python-h5py
3510 python-loompy 3512 python-loompy
@@ -3515,8 +3517,7 @@ three prime UTR.")
3515 python-scipy 3517 python-scipy
3516 python-setuptools 3518 python-setuptools
3517 python-zarr)) 3519 python-zarr))
3518 (native-inputs (list python-cython python-setuptools python-setuptools-scm 3520 (native-inputs (list python-cython python-setuptools python-setuptools-scm))
3519 python-wheel))
3520 (home-page "https://github.com/lilab-bcb/pegasusio") 3521 (home-page "https://github.com/lilab-bcb/pegasusio")
3521 (synopsis "Read or write single-cell genomics data") 3522 (synopsis "Read or write single-cell genomics data")
3522 (description 3523 (description