about summary refs log tree commit diff
path: root/pkgs/development/python-modules/h5py
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-01-10 15:02:06 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-01-10 15:09:59 +0100
commit9d08f32da6231b884483c5df016a27936cf08405 (patch)
tree3f20a94508217b24edd4cc8198382851dc0336ae /pkgs/development/python-modules/h5py
parent5d09620d83fe040aa735cef9bf54e80f2ccf73cc (diff)
python.pkgs.h5py: 2.8.0 -> 2.9.0
Diffstat (limited to 'pkgs/development/python-modules/h5py')
-rw-r--r--pkgs/development/python-modules/h5py/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/h5py/default.nix b/pkgs/development/python-modules/h5py/default.nix
index 01c33117849e8..e9d14e56fd472 100644
--- a/pkgs/development/python-modules/h5py/default.nix
+++ b/pkgs/development/python-modules/h5py/default.nix
@@ -10,12 +10,12 @@ let
   mpi = hdf5.mpi;
   mpiSupport = hdf5.mpiSupport;
 in buildPythonPackage rec {
-  version = "2.8.0";
+  version = "2.9.0";
   pname = "h5py";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "0mdr6wrq02ac93m1aqx9kad0ppfzmm4imlxqgyy1x4l7hmdcc9p6";
+    sha256 = "9d41ca62daf36d6b6515ab8765e4c8c4388ee18e2a665701fef2b41563821002";
   };
 
   configure_flags = "--hdf5=${hdf5}" + optionalString mpiSupport " --mpi";
@@ -37,9 +37,6 @@ in buildPythonPackage rec {
   propagatedBuildInputs = [ numpy six]
     ++ optionals mpiSupport [ mpi4py openssh ];
 
-  # https://github.com/h5py/h5py/issues/1088
-  doCheck = false;
-
   meta = {
     description =
       "Pythonic interface to the HDF5 binary data format";