[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/13: gnu: python-anndata: Fetch sources from git.
From: |
guix-commits |
Subject: |
10/13: gnu: python-anndata: Fetch sources from git. |
Date: |
Mon, 30 Aug 2021 12:50:51 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit d3364b9c37f0c2ca005e90619ace9b5ed8326cd4
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Aug 30 18:26:14 2021 +0200
gnu: python-anndata: Fetch sources from git.
* gnu/packages/python-xyz.scm (python-anndata)[source]: Fetch from git to
include test data.
[arguments]: Enable tests. Do not let setuptools_scm guess the version.
---
gnu/packages/python-xyz.scm | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5acd237..577353e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -21386,15 +21386,18 @@ N-dimensional arrays for Python.")
(version "0.7.6")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "anndata" version))
+ ;; The tarball from PyPi doesn't include tests.
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/theislab/anndata")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
(base32
- "1ch8yp0xmag6z0kl01pljm35lbbwax7lrimfhiclpkd4m6xngk53"))))
+ "1q30bsfsq9xfqm8nmabg3bjh9gix3yng0170xiiyw1lin4xncf0q"))))
(build-system python-build-system)
(arguments
- `(#:tests? #f ; The tarball from PyPi doesn't include tests.
- #:phases
+ `(#:phases
(modify-phases %standard-phases
(delete 'check)
(add-before 'build 'relax-dependency-requirements
@@ -21405,6 +21408,7 @@ N-dimensional arrays for Python.")
(("pandas>=1.1.1") "pandas>=1.0.5"))))
(replace 'build
(lambda _
+ (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" ,version)
;; ZIP does not support timestamps before 1980.
(setenv "SOURCE_DATE_EPOCH" "315532800")
(invoke "flit" "build")))
- 01/13: gnu: Add python-pybbi., (continued)
- 01/13: gnu: Add python-pybbi., guix-commits, 2021/08/30
- 02/13: gnu: Add python-svgutils., guix-commits, 2021/08/30
- 04/13: gnu: Add python-pytest-console-scripts., guix-commits, 2021/08/30
- 06/13: gnu: Add python-pytest-mock-3., guix-commits, 2021/08/30
- 08/13: gnu: Add python-jupyter-server., guix-commits, 2021/08/30
- 07/13: gnu: Add python-anyio., guix-commits, 2021/08/30
- 05/13: gnu: Add python-pytest-tornasync., guix-commits, 2021/08/30
- 12/13: gnu: Add python-voila., guix-commits, 2021/08/30
- 03/13: gnu: Add python-dna-features-viewer., guix-commits, 2021/08/30
- 09/13: gnu: python-scanpy: Update to 1.8.1., guix-commits, 2021/08/30
- 10/13: gnu: python-anndata: Fetch sources from git.,
guix-commits <=
- 11/13: gnu: python-scikit-learn: Update to 0.24.2., guix-commits, 2021/08/30
- 13/13: gnu: Add python-coolbox., guix-commits, 2021/08/30