diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-12-25 22:05:39 +0000 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-12-26 02:02:01 +0100 |
commit | 6370fb2d2685bf048256129197996d33a57c7941 (patch) | |
tree | 69d0556f0d741efa1ddb78239b22193c6d0cdf17 /gnu/packages/compression.scm | |
parent | 8c03d1fa9374bd94f36b00cc63a3d571d4eab46e (diff) | |
download | patches-6370fb2d2685bf048256129197996d33a57c7941.tar patches-6370fb2d2685bf048256129197996d33a57c7941.tar.gz |
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.
Diffstat (limited to 'gnu/packages/compression.scm')
-rw-r--r-- | gnu/packages/compression.scm | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index c242a5a4e7..b6ad3c9a1f 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -1033,22 +1033,16 @@ well as bzip2.") (define-public bitshuffle (package (name "bitshuffle") - (version "0.3.2") + (version "0.3.4") (source (origin (method url-fetch) (uri (pypi-uri "bitshuffle" version)) (sha256 (base32 - "01vcjrvsxjvv47y5hf9rps69zwv0vwd4ydhhms2jfs4rpcnlak6v")))) + "0ydawb01ghsvmw0lraczhrgvkjj97bpg98f1qqs1cnfp953mdd5v")))) (build-system python-build-system) (arguments - `(#:tests? #f - #:phases - (modify-phases %standard-phases - (add-before 'check 'make-required-dir - (lambda _ - (mkdir-p "bitshuffle/plugin") - #t))))) + `(#:tests? #f)) ; fail: https://github.com/h5py/h5py/issues/769 (inputs `(("numpy" ,python-numpy) ("h5py" ,python-h5py) |