pythonPackages.protobuf: add pyext dependency
This commit is contained in:
parent
421db29915
commit
a331662930
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, python, buildPythonPackage
|
{ stdenv, python, buildPythonPackage
|
||||||
, protobuf, google_apputils
|
, protobuf, google_apputils, pyext
|
||||||
, disabled, doCheck ? true }:
|
, disabled, doCheck ? true }:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
@ -9,7 +9,7 @@ buildPythonPackage rec {
|
|||||||
inherit disabled doCheck;
|
inherit disabled doCheck;
|
||||||
|
|
||||||
propagatedBuildInputs = [ protobuf google_apputils ];
|
propagatedBuildInputs = [ protobuf google_apputils ];
|
||||||
buildInputs = [ google_apputils ];
|
buildInputs = [ google_apputils pyext ];
|
||||||
|
|
||||||
prePatch = ''
|
prePatch = ''
|
||||||
while [ ! -d python ]; do
|
while [ ! -d python ]; do
|
||||||
|
@ -19316,12 +19316,11 @@ in {
|
|||||||
|
|
||||||
protobuf = self.protobuf2_6;
|
protobuf = self.protobuf2_6;
|
||||||
# only required by tensorflow
|
# only required by tensorflow
|
||||||
protobuf3_0_0b2 = callPackage ../development/python-modules/protobuf.nix {
|
protobuf3_2 = callPackage ../development/python-modules/protobuf.nix {
|
||||||
disabled = isPyPy || isPy3k;
|
disabled = isPyPy;
|
||||||
doCheck = isPy3k;
|
doCheck = !isPy3k;
|
||||||
protobuf = pkgs.protobuf3_0_0b2;
|
protobuf = pkgs.protobuf3_2;
|
||||||
};
|
};
|
||||||
|
|
||||||
protobuf3_0 = callPackage ../development/python-modules/protobuf.nix {
|
protobuf3_0 = callPackage ../development/python-modules/protobuf.nix {
|
||||||
disabled = isPyPy;
|
disabled = isPyPy;
|
||||||
doCheck = isPy3k;
|
doCheck = isPy3k;
|
||||||
|
Loading…
Reference in New Issue
Block a user