~ruther/guix-local

5890db37f33434e69b851c09b548557812e55508 — Sharlatan Hellseher 2 months ago 3c6ce6a
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>
1 files changed, 7 insertions(+), 5 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +7 -5
@@ 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