f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
59 lines
1.9 KiB
Nix
59 lines
1.9 KiB
Nix
{ stdenv, fetchurl, python, buildPythonPackage, mpi, openssh, isPy3k, isPyPy }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mpi4py";
|
|
version = "2.0.0";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://bitbucket.org/mpi4py/mpi4py/downloads/${name}.tar.gz";
|
|
sha256 = "6543a05851a7aa1e6d165e673d422ba24e45c41e4221f0993fe1e5924a00cb81";
|
|
};
|
|
|
|
passthru = {
|
|
inherit mpi;
|
|
};
|
|
|
|
# The tests in the `test_spawn` module fail in the chroot build environment.
|
|
# However, they do pass in a pure, or non-pure nix-shell. Hence, we
|
|
# deactivate these particular tests.
|
|
# Unfortunately, the command-line arguments to `./setup.py test` are not
|
|
# correctly passed to the test-runner. Hence, these arguments are patched
|
|
# directly into `setup.py`.
|
|
patchPhase = ''
|
|
sed 's/err = main(cmd.args or \[\])/err = main(cmd.args or ["-v", "-e", "test_spawn"])/' -i setup.py
|
|
'';
|
|
|
|
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
|
|
'';
|
|
|
|
setupPyBuildFlags = ["--mpicc=${mpi}/bin/mpicc"];
|
|
|
|
buildInputs = [ mpi ];
|
|
# Requires openssh for tests. Tests of dependent packages will also fail,
|
|
# if openssh is not present. E.g. h5py with mpi support.
|
|
propagatedBuildInputs = [ openssh ];
|
|
|
|
disabled = isPy3k || isPyPy;
|
|
|
|
meta = {
|
|
description =
|
|
"Python bindings for the Message Passing Interface standard";
|
|
homepage = http://code.google.com/p/mpi4py/;
|
|
license = stdenv.lib.licenses.bsd3;
|
|
};
|
|
}
|