[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/04: gnu: python-pynrrd: Update to 1.0.0.
From: |
guix-commits |
Subject: |
03/04: gnu: python-pynrrd: Update to 1.0.0. |
Date: |
Tue, 6 Feb 2024 16:20:44 -0500 (EST) |
sharlatan pushed a commit to branch master
in repository guix.
commit 5dee582c135f4e3e639b8b2a9d502037053075d9
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Tue Feb 6 19:55:29 2024 +0000
gnu: python-pynrrd: Update to 1.0.0.
* gnu/packages/python-science.scm (python-pynrrd): Update to 1.0.0.
[arguments]: Keep 'ensure-no-mtimes-pre-1980 phase as it's building with
it successfully.
[propagated-inputs]: Add python-nptyping and python-typing-extensions.
Change-Id: Ic4dcd0825e71d3eb4acd39694bee9e22e8485f9f
---
gnu/packages/python-science.scm | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 3b3faecde2..30547e9cbe 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -2603,7 +2603,7 @@ Providers}.")
(define-public python-pynrrd
(package
(name "python-pynrrd")
- (version "0.4.3")
+ (version "1.0.0")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -2612,13 +2612,10 @@ Providers}.")
(file-name (git-file-name name version))
(sha256
(base32
- "12vlgx2k7jxbq9r9maiix4dbk8alixa0il420bqwhzln08s3chz1"))))
+ "09gdyi4kbi3512ydgqxkgr4j7b9a95qh83fk2n9s41bns4id9xj7"))))
(build-system python-build-system)
- (arguments
- (list #:phases
- #~(modify-phases %standard-phases
- (delete 'ensure-no-mtimes-pre-1980))))
- (propagated-inputs (list python-numpy))
+ (propagated-inputs
+ (list python-nptyping python-numpy python-typing-extensions))
(home-page "https://github.com/mhe/pynrrd")
(synopsis "Python module for reading and writing NRRD files")
(description