summary refs log tree commit diff
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2014-09-07 19:56:34 +0200
committerDomen Kožar <domen@dev.si>2014-09-07 19:56:34 +0200
commit0487521ab2c2bda3d16b9f84e3cc01ae13fd8ed0 (patch)
tree81c5deff8a2fee0afc1d6e9ed5828cb7e23a7ce5
parent073cd3cfb97221b4cd91185e65d81b6fad660564 (diff)
parent970f51ac0afebcda177010bc5a807c874c36bcba (diff)
downloadnixpkgs-0487521ab2c2bda3d16b9f84e3cc01ae13fd8ed0.tar
nixpkgs-0487521ab2c2bda3d16b9f84e3cc01ae13fd8ed0.tar.gz
nixpkgs-0487521ab2c2bda3d16b9f84e3cc01ae13fd8ed0.tar.bz2
nixpkgs-0487521ab2c2bda3d16b9f84e3cc01ae13fd8ed0.tar.lz
nixpkgs-0487521ab2c2bda3d16b9f84e3cc01ae13fd8ed0.tar.xz
nixpkgs-0487521ab2c2bda3d16b9f84e3cc01ae13fd8ed0.tar.zst
nixpkgs-0487521ab2c2bda3d16b9f84e3cc01ae13fd8ed0.zip
Merge pull request #4001 from aherrmann/pr_mpi
mpi4py: Disable for Python3 and PyPy
-rw-r--r--pkgs/development/python-modules/mpi4py/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/mpi4py/default.nix b/pkgs/development/python-modules/mpi4py/default.nix
index ec181652da6..c38d948dd6b 100644
--- a/pkgs/development/python-modules/mpi4py/default.nix
+++ b/pkgs/development/python-modules/mpi4py/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, python, buildPythonPackage, mpi, openssh }:
+{ stdenv, fetchurl, python, buildPythonPackage, mpi, openssh, isPy3k, isPyPy }:
 
 buildPythonPackage rec {
   name = "mpi4py-1.3.1";
@@ -45,6 +45,8 @@ buildPythonPackage rec {
   # 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";