guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/08: gnu: python-anndata: Update to 0.7.8.


From: guix-commits
Subject: 06/08: gnu: python-anndata: Update to 0.7.8.
Date: Mon, 31 Jan 2022 10:09:26 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit f383aca4086716b07f4e1f06df2aad4d7b796ebc
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Jan 31 15:39:46 2022 +0100

    gnu: python-anndata: Update to 0.7.8.
    
    * gnu/packages/python-xyz.scm (python-anndata): Update to 0.7.8.
    [arguments]: Embed the appropriate version string instead of letting it
    try (and fail) to discover the correct string at load time.
    [propagated-inputs]: Add python-xlrd-1.
---
 gnu/packages/python-xyz.scm | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 1f40f982ce..945f3319f1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22728,7 +22728,7 @@ N-dimensional arrays for Python.")
 (define-public python-anndata
   (package
     (name "python-anndata")
-    (version "0.7.6")
+    (version "0.7.8")
     (source
      (origin
        ;; The tarball from PyPi doesn't include tests.
@@ -22739,7 +22739,7 @@ N-dimensional arrays for Python.")
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "1q30bsfsq9xfqm8nmabg3bjh9gix3yng0170xiiyw1lin4xncf0q"))))
+         "1rrr9xfdaf00ixj5gyym75bl78gkaj55yfw3wjhvx0pdwqpwp9py"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
@@ -22754,6 +22754,9 @@ N-dimensional arrays for Python.")
          (replace 'build
            (lambda _
              (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" ,version)
+             (substitute* "anndata/_metadata.py"
+               (("__version__ =.*")
+                (string-append "__version__ = \"" ,version "\"\n")))
              ;; ZIP does not support timestamps before 1980.
              (setenv "SOURCE_DATE_EPOCH" "315532800")
              (invoke "flit" "build")))
@@ -22765,8 +22768,7 @@ N-dimensional arrays for Python.")
                            (format #true wheel)
                            (invoke "python" "-m" "pip" "install"
                                    wheel (string-append "--prefix=" out)))
-                         (find-files "dist" "\\.whl$")))
-             #t)))))
+                         (find-files "dist" "\\.whl$"))))))))
     (propagated-inputs
      (list python-h5py
            python-importlib-metadata
@@ -22775,6 +22777,7 @@ N-dimensional arrays for Python.")
            python-packaging
            python-pandas
            python-scipy
+           python-xlrd-1
            python-zarr))
     (native-inputs
      (list python-joblib python-pytest python-toml python-flit



reply via email to

[Prev in Thread] Current Thread [Next in Thread]