2014-08-31 18:02:38 +00:00
|
|
|
{ stdenv, fetchurl, python, buildPythonPackage
|
2015-10-25 12:26:34 +00:00
|
|
|
, numpy, hdf5, cython, six, pkgconfig
|
2018-01-27 02:26:22 +00:00
|
|
|
, mpi4py ? null, openssh }:
|
2014-08-31 18:02:38 +00:00
|
|
|
|
2016-07-19 10:30:31 +00:00
|
|
|
assert hdf5.mpiSupport -> mpi4py != null && hdf5.mpi == mpi4py.mpi;
|
2014-08-31 18:02:38 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
2016-07-19 10:30:31 +00:00
|
|
|
let
|
|
|
|
mpi = hdf5.mpi;
|
|
|
|
mpiSupport = hdf5.mpiSupport;
|
|
|
|
|
|
|
|
in buildPythonPackage rec {
|
2017-09-05 09:16:41 +00:00
|
|
|
version = "2.7.1";
|
2017-05-27 09:25:35 +00:00
|
|
|
pname = "h5py";
|
|
|
|
name = "${pname}-${version}";
|
2014-08-31 18:02:38 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-04-26 12:38:03 +00:00
|
|
|
url = "mirror://pypi/h/h5py/${name}.tar.gz";
|
2017-09-05 09:16:41 +00:00
|
|
|
sha256 = "180a688311e826ff6ae6d3bda9b5c292b90b28787525ddfcb10a29d5ddcae2cc";
|
2014-08-31 18:02:38 +00:00
|
|
|
};
|
|
|
|
|
2015-10-25 12:26:34 +00:00
|
|
|
configure_flags = "--hdf5=${hdf5}" + optionalString mpiSupport " --mpi";
|
|
|
|
|
|
|
|
postConfigure = ''
|
|
|
|
${python.executable} setup.py configure ${configure_flags}
|
2018-01-27 02:26:22 +00:00
|
|
|
|
|
|
|
# Needed to run the tests reliably. See:
|
|
|
|
# https://bitbucket.org/mpi4py/mpi4py/issues/87/multiple-test-errors-with-openmpi-30
|
|
|
|
${optionalString mpiSupport "export OMPI_MCA_rmaps_base_oversubscribe=yes"}
|
2015-10-25 12:26:34 +00:00
|
|
|
'';
|
2014-08-31 18:02:38 +00:00
|
|
|
|
|
|
|
preBuild = if mpiSupport then "export CC=${mpi}/bin/mpicc" else "";
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ hdf5 cython ]
|
2014-08-31 18:02:38 +00:00
|
|
|
++ optional mpiSupport mpi
|
|
|
|
;
|
2015-10-25 12:26:34 +00:00
|
|
|
propagatedBuildInputs = [ numpy six]
|
2018-01-27 02:26:22 +00:00
|
|
|
++ optionals mpiSupport [ mpi4py openssh ]
|
2014-08-31 18:02:38 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
meta = {
|
2014-09-03 19:31:13 +00:00
|
|
|
description =
|
2014-09-04 16:48:08 +00:00
|
|
|
"Pythonic interface to the HDF5 binary data format";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://www.h5py.org/;
|
2014-08-31 18:02:38 +00:00
|
|
|
license = stdenv.lib.licenses.bsd2;
|
|
|
|
};
|
|
|
|
}
|