mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: python-h5py, python2-h5py: Correct inputs.
* gnu/packages/python.scm (python-h5py) [inputs]: Remove python-cython and python-numpy. [propagated-inputs]: New field. [native-inputs]: Drop python-setuptools and add python-cython. (python2-h5py): Replace "inputs" with "propagated-inputs".
This commit is contained in:
parent
1285119bde
commit
3c4010b1e9
1 changed files with 6 additions and 6 deletions
|
@ -596,12 +596,12 @@ (define-public python-h5py
|
||||||
(base32
|
(base32
|
||||||
"0q4f9l8grf6pwp64xbv8bmyxx416s7h4522nnxac056ap3savbps"))))
|
"0q4f9l8grf6pwp64xbv8bmyxx416s7h4522nnxac056ap3savbps"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-numpy" ,python-numpy)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("python-cython" ,python-cython)
|
`(("hdf5" ,hdf5)))
|
||||||
("python-numpy" ,python-numpy)
|
|
||||||
("hdf5" ,hdf5)))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-setuptools" ,python-setuptools)))
|
`(("python-cython" ,python-cython)))
|
||||||
(arguments `(#:tests? #f)) ; no test target
|
(arguments `(#:tests? #f)) ; no test target
|
||||||
(home-page "http://www.h5py.org/")
|
(home-page "http://www.h5py.org/")
|
||||||
(synopsis "Read and write HDF5 files from Python")
|
(synopsis "Read and write HDF5 files from Python")
|
||||||
|
@ -616,11 +616,11 @@ (define-public python-h5py
|
||||||
(define-public python2-h5py
|
(define-public python2-h5py
|
||||||
(let ((h5py (package-with-python2 python-h5py)))
|
(let ((h5py (package-with-python2 python-h5py)))
|
||||||
(package (inherit h5py)
|
(package (inherit h5py)
|
||||||
(inputs
|
(propagated-inputs
|
||||||
`(("python2-numpy" ,python2-numpy)
|
`(("python2-numpy" ,python2-numpy)
|
||||||
,@(alist-delete
|
,@(alist-delete
|
||||||
"python-numpy"
|
"python-numpy"
|
||||||
(package-inputs h5py)))))))
|
(package-propagated-inputs h5py)))))))
|
||||||
|
|
||||||
(define-public python-lockfile
|
(define-public python-lockfile
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue