2019-06-28 04:38:28 +01:00
|
|
|
{ stdenv, fetchPypi, python, buildPythonPackage, mpi, openssh }:
|
2014-08-31 19:02:25 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "mpi4py";
|
2019-11-11 11:13:37 +00:00
|
|
|
version = "3.0.3";
|
2014-08-31 19:02:25 +01:00
|
|
|
|
2017-09-15 17:11:45 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-11-11 11:13:37 +00:00
|
|
|
sha256 = "012d716c8b9ed1e513fcc4b18e5af16a8791f51e6d1716baccf988ad355c5a1f";
|
2014-08-31 19:02:25 +01: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 19:02:25 +01: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 19:02:25 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
setupPyBuildFlags = ["--mpicc=${mpi}/bin/mpicc"];
|
|
|
|
|
2019-02-15 09:08:27 +00:00
|
|
|
nativeBuildInputs = [ mpi openssh ];
|
2017-09-15 17:11:45 +01:00
|
|
|
|
2014-08-31 19:02:25 +01:00
|
|
|
meta = {
|
2014-09-03 20:31:00 +01:00
|
|
|
description =
|
2014-09-04 17:47:57 +01:00
|
|
|
"Python bindings for the Message Passing Interface standard";
|
2019-12-08 16:50:31 +00:00
|
|
|
homepage = "https://bitbucket.org/mpi4py/mpi4py/";
|
2014-08-31 19:02:25 +01:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|