diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-21 12:18:59 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:44 +0100 |
| commit | e2f1337179c060f6571303d79a5dfd2bb96752fb (patch) | |
| tree | 2517eb0ba224fc784336c5ffa93bb596572355e2 | |
| parent | 861a1ed5d1c43c56ccd1bb4b3bc64d0fc6208731 (diff) | |
gnu: python-scanorama: Switch to git-fetch.
* gnu/packages/bioinformatics.scm (python-scanorama)[source]:
Switch to git-fetch.
Change-Id: I6da7488feb85be0f5fc60f00eeb5c25034a63dd5
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/bioinformatics.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index f7711b05b6..dcdeef35d8 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -20778,10 +20778,13 @@ matrices.") (version "1.7.4") (source (origin - (method url-fetch) - (uri (pypi-uri "scanorama" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/brianhie/scanorama") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "0p00brhd8j8klnvcc2r3h5bhm4iywhbs5lw0fy605hxbcc711pk7")))) + (base32 "1jpn4kq3qqa40xr0dwa9bw5cgga6h9ww9gfbyj6w3mfs8rv4w9rz")))) (build-system pyproject-build-system) (propagated-inputs (list python-annoy python-fbpca @@ -20791,10 +20794,7 @@ matrices.") python-numpy python-scikit-learn python-scipy)) - (native-inputs - (list python-anndata - python-pytest - python-setuptools)) + (native-inputs (list python-anndata python-pytest python-setuptools)) (home-page "https://github.com/brianhie/scanorama") (synopsis "Panoramic stitching of heterogeneous single cell transcriptomic data") |
