lol

mpi4py: Disable for Python3 and PyPy

Builds for Python3 and PyPy are failing at the moment [1-3]. Therefore, they
are disabled.

[1]: https://github.com/NixOS/nixpkgs/pull/3938#issuecomment-54750065
[2]: http://hydra.nixos.org/build/13993137/nixlog/1/raw
[3]: http://hydra.nixos.org/build/13873028/log/raw

+3 -1
+3 -1
pkgs/development/python-modules/mpi4py/default.nix
··· 1 - { stdenv, fetchurl, python, buildPythonPackage, mpi, openssh }: 1 + { stdenv, fetchurl, python, buildPythonPackage, mpi, openssh, isPy3k, isPyPy }: 2 2 3 3 buildPythonPackage rec { 4 4 name = "mpi4py-1.3.1"; ··· 44 44 # Requires openssh for tests. Tests of dependent packages will also fail, 45 45 # if openssh is not present. E.g. h5py with mpi support. 46 46 propagatedBuildInputs = [ openssh ]; 47 + 48 + disabled = isPy3k || isPyPy; 47 49 48 50 meta = { 49 51 description =