gnu: python-h5py: Update to 2.6.0.
* gnu/packages/python.scm (python-h5py): Update to 2.6.0. [inputs]: Add python-six. [native-inputs]: Add python-pkgconfig. [properties]: Define python2-h5py.
This commit is contained in:
parent
61c9babb6e
commit
fe147c4143
|
@ -650,15 +650,14 @@ and verifies that it matches the intended target hostname.")
|
||||||
(define-public python-h5py
|
(define-public python-h5py
|
||||||
(package
|
(package
|
||||||
(name "python-h5py")
|
(name "python-h5py")
|
||||||
(version "2.4.0")
|
(version "2.6.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://pypi.python.org/packages/source/h/h5py/h5py-"
|
(uri (pypi-uri "h5py" version))
|
||||||
version ".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0q4f9l8grf6pwp64xbv8bmyxx416s7h4522nnxac056ap3savbps"))))
|
"0df46dg7i7xfking9lp221bfm8dbl974yvlrbi1w7r6m61ac7bxj"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no test target
|
`(#:tests? #f ; no test target
|
||||||
|
@ -679,9 +678,11 @@ and verifies that it matches the intended target hostname.")
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-numpy" ,python-numpy)))
|
`(("python-numpy" ,python-numpy)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("hdf5" ,hdf5)))
|
`(("hdf5" ,hdf5)
|
||||||
|
("python-six" ,python-six)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-cython" ,python-cython)))
|
`(("python-cython" ,python-cython)
|
||||||
|
("python-pkgconfig" ,python-pkgconfig)))
|
||||||
(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")
|
||||||
(description
|
(description
|
||||||
|
@ -690,16 +691,11 @@ HDF5 library from Python. The low-level interface is intended to be a
|
||||||
complete wrapping of the HDF5 API, while the high-level component supports
|
complete wrapping of the HDF5 API, while the high-level component supports
|
||||||
access to HDF5 files, datasets and groups using established Python and NumPy
|
access to HDF5 files, datasets and groups using established Python and NumPy
|
||||||
concepts.")
|
concepts.")
|
||||||
(license bsd-3)))
|
(license bsd-3)
|
||||||
|
(properties `((python2-variant . ,(delay python2-h5py))))))
|
||||||
|
|
||||||
(define-public python2-h5py
|
(define-public python2-h5py
|
||||||
(let ((h5py (package-with-python2 python-h5py)))
|
(package-with-python2 (strip-python2-variant python-h5py)))
|
||||||
(package (inherit h5py)
|
|
||||||
(propagated-inputs
|
|
||||||
`(("python2-numpy" ,python2-numpy)
|
|
||||||
,@(alist-delete
|
|
||||||
"python-numpy"
|
|
||||||
(package-propagated-inputs h5py)))))))
|
|
||||||
|
|
||||||
(define-public python-lockfile
|
(define-public python-lockfile
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue