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