2019-06-27 20:38:28 -07:00
|
|
|
{ stdenv, fetchPypi, python, buildPythonPackage, mpi, openssh }:
|
2014-08-31 11:02:25 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 02:25:35 -07:00
|
|
|
pname = "mpi4py";
|
2019-11-11 03:13:37 -08:00
|
|
|
version = "3.0.3";
|
2014-08-31 11:02:25 -07:00
|
|
|
|
2017-09-15 09:11:45 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-11-11 03:13:37 -08:00
|
|
|
sha256 = "012d716c8b9ed1e513fcc4b18e5af16a8791f51e6d1716baccf988ad355c5a1f";
|
2014-08-31 11:02:25 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
inherit mpi;
|
|
|
|
};
|
|
|
|
|
2018-02-10 22:34:36 -08:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace test/test_spawn.py --replace \
|
|
|
|
"unittest.skipMPI('openmpi(<3.0.0)')" \
|
|
|
|
"unittest.skipMPI('openmpi')"
|
|
|
|
'';
|
|
|
|
|
2014-08-31 11:02:25 -07: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-26 18:26:22 -08: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 11:02:25 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
setupPyBuildFlags = ["--mpicc=${mpi}/bin/mpicc"];
|
|
|
|
|
2019-02-15 01:08:27 -08:00
|
|
|
nativeBuildInputs = [ mpi openssh ];
|
2017-09-15 09:11:45 -07:00
|
|
|
|
2014-08-31 11:02:25 -07:00
|
|
|
meta = {
|
2014-09-03 12:31:00 -07:00
|
|
|
description =
|
2014-09-04 09:47:57 -07:00
|
|
|
"Python bindings for the Message Passing Interface standard";
|
2019-12-08 08:50:31 -08:00
|
|
|
homepage = "https://bitbucket.org/mpi4py/mpi4py/";
|
2014-08-31 11:02:25 -07:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|