pythonPackages.protobuf: disable on pypy
(cherry picked from commit 172d2793b9819eb6fa87f88806aaf6c7587e3a2c) Signed-off-by: Domen Kožar <domen@dev.si>
This commit is contained in:
parent
df045923b4
commit
d9cb4f92b5
|
@ -9864,7 +9864,7 @@ let
|
|||
protobuf2_5 = self.protobufBuild pkgs.protobuf2_5;
|
||||
protobufBuild = protobuf: buildPythonPackage rec {
|
||||
inherit (protobuf) name src;
|
||||
disabled = isPy3k;
|
||||
disabled = isPy3k || isPyPy;
|
||||
|
||||
propagatedBuildInputs = with self; [ protobuf google_apputils ];
|
||||
|
||||
|
|
Loading…
Reference in New Issue