guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit f1fde14cec1dd7bb1e094e4b16f577aafd3f5927
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Jan 4 16:23:33 2026 +0000
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
---
gnu/packages/python-xyz.scm | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index cd864771c8..6521d036eb 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5192,8 +5192,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
@@ -5211,11 +5214,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