pythonPackages.libarcus: use pkgs.protobuf as input

This commit makes pkgs.protobuf the input for libarcus, since the latter
searches for the native protobuf library and not for the Python module.
This commit is contained in:
Ioannis Koutras 2019-03-02 15:13:45 +02:00 committed by Robert Schütz
parent 37d2f71e2f
commit 6a523a180a
2 changed files with 3 additions and 2 deletions

View File

@ -15,8 +15,9 @@ buildPythonPackage rec {
disabled = pythonOlder "3.4.0";
propagatedBuildInputs = [ sip protobuf ];
propagatedBuildInputs = [ sip ];
nativeBuildInputs = [ cmake ];
buildInputs = [ protobuf ];
postPatch = ''
# To workaround buggy SIP detection which overrides PYTHONPATH

View File

@ -2996,7 +2996,7 @@ in {
fs-s3fs = callPackage ../development/python-modules/fs-s3fs { };
libarcus = callPackage ../development/python-modules/libarcus { };
libarcus = callPackage ../development/python-modules/libarcus { inherit (pkgs) protobuf; };
libcloud = callPackage ../development/python-modules/libcloud { };