mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
pythonPackages.protobuf: disable on pypy
(cherry picked from commit 172d2793b9
)
Signed-off-by: Domen Kožar <domen@dev.si>
This commit is contained in:
parent
df045923b4
commit
d9cb4f92b5
@ -3552,7 +3552,7 @@ let
|
|||||||
gmpy2 = buildPythonPackage rec {
|
gmpy2 = buildPythonPackage rec {
|
||||||
name = "gmpy2-2.0.6";
|
name = "gmpy2-2.0.6";
|
||||||
disabled = isPyPy;
|
disabled = isPyPy;
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "https://pypi.python.org/packages/source/g/gmpy2/${name}.zip";
|
url = "https://pypi.python.org/packages/source/g/gmpy2/${name}.zip";
|
||||||
md5 = "7365d880953ba54c2cdcf171c7e19b2b";
|
md5 = "7365d880953ba54c2cdcf171c7e19b2b";
|
||||||
@ -6807,9 +6807,9 @@ let
|
|||||||
|
|
||||||
importlib = buildPythonPackage rec {
|
importlib = buildPythonPackage rec {
|
||||||
name = "importlib-1.0.2";
|
name = "importlib-1.0.2";
|
||||||
|
|
||||||
disabled = (!isPy26) || isPyPy;
|
disabled = (!isPy26) || isPyPy;
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "http://pypi.python.org/packages/source/i/importlib/importlib-1.0.2.tar.gz";
|
url = "http://pypi.python.org/packages/source/i/importlib/importlib-1.0.2.tar.gz";
|
||||||
md5 = "4aa23397da8bd7c7426864e88e4db7e1";
|
md5 = "4aa23397da8bd7c7426864e88e4db7e1";
|
||||||
@ -8408,7 +8408,7 @@ let
|
|||||||
nose
|
nose
|
||||||
modules.sqlite3
|
modules.sqlite3
|
||||||
];
|
];
|
||||||
|
|
||||||
# Test does not work on Py3k because it calls 'python'.
|
# Test does not work on Py3k because it calls 'python'.
|
||||||
# https://github.com/nipy/nibabel/issues/341
|
# https://github.com/nipy/nibabel/issues/341
|
||||||
preCheck = ''
|
preCheck = ''
|
||||||
@ -9864,7 +9864,7 @@ let
|
|||||||
protobuf2_5 = self.protobufBuild pkgs.protobuf2_5;
|
protobuf2_5 = self.protobufBuild pkgs.protobuf2_5;
|
||||||
protobufBuild = protobuf: buildPythonPackage rec {
|
protobufBuild = protobuf: buildPythonPackage rec {
|
||||||
inherit (protobuf) name src;
|
inherit (protobuf) name src;
|
||||||
disabled = isPy3k;
|
disabled = isPy3k || isPyPy;
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ protobuf google_apputils ];
|
propagatedBuildInputs = with self; [ protobuf google_apputils ];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user