pythonPackages.grpcio: split outputs to avoid runtime build references
protobuf propagates build-arch protobuf, and this commit prevents it from ending up in grpcio's runtime closure.
This commit is contained in:
parent
8d171ccfc3
commit
9518714926
|
@ -6,6 +6,8 @@ buildPythonPackage rec {
|
|||
inherit (grpc) src version;
|
||||
pname = "grpcio";
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
nativeBuildInputs = [ cython pkgconfig ]
|
||||
++ stdenv.lib.optional stdenv.isDarwin darwin.cctools;
|
||||
|
||||
|
|
Loading…
Reference in New Issue