summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-01-04 16:23:33 +0000
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:21:33 +0100
commit5890db37f33434e69b851c09b548557812e55508 (patch)
tree096a3651854d3a09a5255094766b40c4d42d8b85 /gnu/packages/python-xyz.scm
parent3c6ce6a4575ec9dd29798eb1b7f9347cae577f2a (diff)
gnu: python-hdf5storage: Use pythno-numpy@1.
* gnu/packages/python-xyz.scm (python-hdf5storage): [propagated-inputs]: Remove python-numpy; add python-numpy-1. [native-inputs]: Remove python-wheel. Change-Id: I1d2e3d4d5b654e4025aa16f4d1aa9230c10a3e0a Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm12
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 688a3e10a37..edeaac87313 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5238,8 +5238,11 @@ concepts.")
(license license:bsd-3)))
(define-public python-hdf5storage
- ;; Use the latest commit containing compatability with Pytest and Python
- ;; 3.11, see <https://github.com/frejanordsiek/hdf5storage/issues/135>.
+ ;; XXX: Use the latest commit containing compatability with Pytest and Python
+ ;; 3.11, see: <https://github.com/frejanordsiek/hdf5storage/issues/135>.
+ ;;
+ ;; This package probably is sun setting, consider to remove when stops
+ ;; building, see: <https://github.com/frejanordsiek/hdf5storage/issues/136>.
(let ((commit "7ee2a96de134b44beaa79c3a11c559f9ac87c5a6")
(revision "0"))
(package
@@ -5257,11 +5260,10 @@ concepts.")
(build-system pyproject-build-system)
(native-inputs
(list python-pytest
- python-setuptools
- python-wheel))
+ python-setuptools))
(propagated-inputs
(list python-h5py
- python-numpy))
+ python-numpy-1))
(home-page "https://github.com/frejanordsiek/hdf5storage")
(synopsis "Read and write Python data types from and to HDF5 files")
(description