about summary refs log tree commit diff
path: root/pkgs/development/python-modules/h5py
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@fysik.su.se>2019-04-08 13:39:40 +0200
committerMarkus Kowalewski <markus.kowalewski@fysik.su.se>2019-04-08 13:39:40 +0200
commitadbf19a9bd9d7d251db07fffc6868d455b63fa5a (patch)
tree72dd00ee1e2b0ba0539fb951568199ab8daeb17c /pkgs/development/python-modules/h5py
parentb09c98b4aa2724c0f9a6ef18d5757c999918f387 (diff)
pythonPackages.h5py: add ssh to checkInputs
ssh is required in the checkPhase by openmpi
Diffstat (limited to 'pkgs/development/python-modules/h5py')
-rw-r--r--pkgs/development/python-modules/h5py/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/h5py/default.nix b/pkgs/development/python-modules/h5py/default.nix
index e9d14e56fd472..69507798cbe84 100644
--- a/pkgs/development/python-modules/h5py/default.nix
+++ b/pkgs/development/python-modules/h5py/default.nix
@@ -30,7 +30,7 @@ in buildPythonPackage rec {
 
   preBuild = if mpiSupport then "export CC=${mpi}/bin/mpicc" else "";
 
-  checkInputs = optional isPy27 unittest2;
+  checkInputs = optional isPy27 unittest2 ++ [ openssh ];
   nativeBuildInputs = [ pkgconfig ];
   buildInputs = [ hdf5 cython ]
     ++ optional mpiSupport mpi;