From 36c5be27f36314c152385740d57b6074a0ac244d Mon Sep 17 00:00:00 2001 From: Hugo Buddelmeijer Date: Fri, 26 Dec 2025 19:23:49 +0100 Subject: [PATCH] gnu: python-pynrrd: Update to 1.1.3. * gnu/packages/python-science.scm (python-pynrrd): Update to 1.1.3. [build-system]: Switch to pyproject-build-system. [propagated-inputs]: Remove python-nptyping and python-typing-extensions. [native-inputs]: Add python-pytest and python-setuptools. Change-Id: Id98a3424f35fc791324010deae357f89e2d93362 Reviewed-by: Nicolas Graves Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-science.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 925cf4da904bf13580ff2b9c9d0ba8015127c35b..f487d587ec781b5bd13387f49fe256b79db38be0 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -5945,7 +5945,7 @@ NeuroML2 models.") (define-public python-pynrrd (package (name "python-pynrrd") - (version "1.0.0") + (version "1.1.3") (source (origin (method git-fetch) (uri (git-reference @@ -5954,10 +5954,12 @@ NeuroML2 models.") (file-name (git-file-name name version)) (sha256 (base32 - "09gdyi4kbi3512ydgqxkgr4j7b9a95qh83fk2n9s41bns4id9xj7")))) - (build-system python-build-system) + "1l0hjbqzf5i1bmpxpblpyyqkhci3mb5n07x6hqf2a91hggfyrvda")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest python-setuptools)) (propagated-inputs - (list python-nptyping python-numpy python-typing-extensions)) + (list python-numpy)) (home-page "https://github.com/mhe/pynrrd") (synopsis "Python module for reading and writing NRRD files") (description