summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhislain Vaillant <ghislain.vaillant@inria.fr>2026-08-21 12:09:01 +0200
committerGhislain Vaillant <ghislain.vaillant@inria.fr>2026-08-23 08:21:06 +0200
commit2a899f088b2a5a44167b726a4aff1b1745333450 (patch)
treebe5803e9d07e41b8aa6d2cb3ce6de5407896dc57
parentc7e3889914857c12695c88309a279191efc49b76 (diff)
physics: python-hdf5plugin: Update to 7.0.0, enable tests.
* guix-science/packages/physics.scm (python-hdf5plugin) [source]: Update to 7.0.0. [arguments]<#:tests?,#:test-flags>: Enable tests. [native-inputs]: Add python-pytest.
-rw-r--r--guix-science/packages/physics.scm9
1 files changed, 5 insertions, 4 deletions
diff --git a/guix-science/packages/physics.scm b/guix-science/packages/physics.scm
index 7a88231..42d1b2a 100644
--- a/guix-science/packages/physics.scm
+++ b/guix-science/packages/physics.scm
@@ -1008,7 +1008,7 @@ and a Python binding is provided.")
1008(define-public python-hdf5plugin 1008(define-public python-hdf5plugin
1009 (package 1009 (package
1010 (name "python-hdf5plugin") 1010 (name "python-hdf5plugin")
1011 (version "6.0.0") 1011 (version "7.0.0")
1012 (source 1012 (source
1013 (origin 1013 (origin
1014 (method git-fetch) 1014 (method git-fetch)
@@ -1017,13 +1017,14 @@ and a Python binding is provided.")
1017 (commit (string-append "v" version)))) 1017 (commit (string-append "v" version))))
1018 (file-name (git-file-name name version)) 1018 (file-name (git-file-name name version))
1019 (sha256 1019 (sha256
1020 (base32 "08njd3nn1f41q4fxzzns8ik51md0hm475lal4j4qir6hpdmkfyvn")))) 1020 (base32 "1z9ldggcf2l289yrd7zi48ivwhplkhbl7frm83m174704m4wlhjv"))))
1021 (build-system pyproject-build-system) 1021 (build-system pyproject-build-system)
1022 (arguments 1022 (arguments
1023 (list 1023 (list
1024 #:tests? #f)) ;FIXME: Requires python-blosc2{,-grok}. 1024 #:test-flags
1025 #~(list "test/test.py")))
1025 (propagated-inputs (list python-h5py)) 1026 (propagated-inputs (list python-h5py))
1026 (native-inputs (list python-py-cpuinfo python-setuptools)) 1027 (native-inputs (list python-py-cpuinfo python-pytest python-setuptools))
1027 (home-page "http://www.silx.org/doc/hdf5plugin/latest") 1028 (home-page "http://www.silx.org/doc/hdf5plugin/latest")
1028 (synopsis "HDF5 compression filters for @code{h5py}") 1029 (synopsis "HDF5 compression filters for @code{h5py}")
1029 (description 1030 (description