From 970f51ac0afebcda177010bc5a807c874c36bcba Mon Sep 17 00:00:00 2001 From: Andreas Herrmann Date: Sun, 7 Sep 2014 19:44:08 +0200 Subject: [PATCH] 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 --- pkgs/development/python-modules/mpi4py/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/mpi4py/default.nix b/pkgs/development/python-modules/mpi4py/default.nix index ec181652da66..c38d948dd6be 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";