2018-01-27 02:26:22 +00:00
|
|
|
{ stdenv, fetchPypi, python, buildPythonPackage, mpi, openssh }:
|
2014-08-31 18:02:25 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 09:25:35 +00:00
|
|
|
pname = "mpi4py";
|
2017-11-15 12:46:49 +00:00
|
|
|
version = "3.0.0";
|
2017-05-27 09:25:35 +00:00
|
|
|
name = "${pname}-${version}";
|
2014-08-31 18:02:25 +00:00
|
|
|
|
2017-09-15 16:11:45 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-11-15 12:46:49 +00:00
|
|
|
sha256 = "1mzgd26dfv4vwbci8gq77ss9f0x26i9aqzq9b9vs9ndxhlnv0mxl";
|
2014-08-31 18:02:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
inherit mpi;
|
|
|
|
};
|
|
|
|
|
2018-02-11 06:34:36 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace test/test_spawn.py --replace \
|
|
|
|
"unittest.skipMPI('openmpi(<3.0.0)')" \
|
|
|
|
"unittest.skipMPI('openmpi')"
|
|
|
|
'';
|
|
|
|
|
2014-08-31 18:02:25 +00:00
|
|
|
configurePhase = "";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p "$out/lib/${python.libPrefix}/site-packages"
|
|
|
|
export PYTHONPATH="$out/lib/${python.libPrefix}/site-packages:$PYTHONPATH"
|
|
|
|
|
|
|
|
${python}/bin/${python.executable} setup.py install \
|
|
|
|
--install-lib=$out/lib/${python.libPrefix}/site-packages \
|
|
|
|
--prefix="$out"
|
|
|
|
|
|
|
|
# --install-lib:
|
|
|
|
# sometimes packages specify where files should be installed outside the usual
|
|
|
|
# python lib prefix, we override that back so all infrastructure (setup hooks)
|
|
|
|
# work as expected
|
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
|
|
|
|
export OMPI_MCA_rmaps_base_oversubscribe=yes
|
2014-08-31 18:02:25 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
setupPyBuildFlags = ["--mpicc=${mpi}/bin/mpicc"];
|
|
|
|
|
2018-01-27 02:26:22 +00:00
|
|
|
buildInputs = [ mpi openssh ];
|
2017-09-15 16:11:45 +00:00
|
|
|
|
2014-08-31 18:02:25 +00:00
|
|
|
meta = {
|
2014-09-03 19:31:00 +00:00
|
|
|
description =
|
2014-09-04 16:47:57 +00:00
|
|
|
"Python bindings for the Message Passing Interface standard";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://code.google.com/p/mpi4py/;
|
2014-08-31 18:02:25 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|