pythonPackages.h5py: add ssh to checkInputs

ssh is required in the checkPhase by openmpi
This commit is contained in:
Markus Kowalewski 2019-04-08 13:39:40 +02:00
parent b09c98b4aa
commit adbf19a9bd
No known key found for this signature in database
GPG key ID: 502A248E3FB4FF48

View file

@ -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;