gnu: bitshuffle: Update to 0.3.4.
* gnu/packages/compression.scm (bitshuffle): Update to 0.3.4. [arguments]: Delete ‘make-required-dir’ phase that no longer is.
This commit is contained in:
parent
8c03d1fa93
commit
6370fb2d26
1 changed files with 3 additions and 9 deletions
|
@ -1033,22 +1033,16 @@ well as bzip2.")
|
||||||
(define-public bitshuffle
|
(define-public bitshuffle
|
||||||
(package
|
(package
|
||||||
(name "bitshuffle")
|
(name "bitshuffle")
|
||||||
(version "0.3.2")
|
(version "0.3.4")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "bitshuffle" version))
|
(uri (pypi-uri "bitshuffle" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"01vcjrvsxjvv47y5hf9rps69zwv0vwd4ydhhms2jfs4rpcnlak6v"))))
|
"0ydawb01ghsvmw0lraczhrgvkjj97bpg98f1qqs1cnfp953mdd5v"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f
|
`(#:tests? #f)) ; fail: https://github.com/h5py/h5py/issues/769
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-before 'check 'make-required-dir
|
|
||||||
(lambda _
|
|
||||||
(mkdir-p "bitshuffle/plugin")
|
|
||||||
#t)))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("numpy" ,python-numpy)
|
`(("numpy" ,python-numpy)
|
||||||
("h5py" ,python-h5py)
|
("h5py" ,python-h5py)
|
||||||
|
|
Reference in a new issue