From adbf19a9bd9d7d251db07fffc6868d455b63fa5a Mon Sep 17 00:00:00 2001 From: Markus Kowalewski Date: Mon, 8 Apr 2019 13:39:40 +0200 Subject: [PATCH] pythonPackages.h5py: add ssh to checkInputs ssh is required in the checkPhase by openmpi --- pkgs/development/python-modules/h5py/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/h5py/default.nix b/pkgs/development/python-modules/h5py/default.nix index e9d14e56fd47..69507798cbe8 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;