pythonPackages.protobuf: disable on pypy

(cherry picked from commit 172d2793b9)
Signed-off-by: Domen Kožar <domen@dev.si>
This commit is contained in:
Domen Kožar 2015-08-29 13:16:22 +02:00
parent df045923b4
commit d9cb4f92b5

View File

@ -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 ];