lol

Merge pull request #4001 from aherrmann/pr_mpi

mpi4py: Disable for Python3 and PyPy

+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 =