Merge pull request #114616 from bobrik/ivan/grpcio-darwin

python3Packages.grpcio: remove cctools from build inputs

authored by

Sandro and committed by
GitHub
1f372a60 c4e4ba09

+1 -3
+1 -3
pkgs/development/python-modules/grpcio/default.nix
··· 1 1 { lib, stdenv 2 2 , buildPythonPackage 3 - , darwin 4 3 , grpc 5 4 , six 6 5 , protobuf ··· 20 19 21 20 outputs = [ "out" "dev" ]; 22 21 23 - nativeBuildInputs = [ cython pkg-config ] 24 - ++ lib.optional stdenv.isDarwin darwin.cctools; 22 + nativeBuildInputs = [ cython pkg-config ]; 25 23 26 24 buildInputs = [ c-ares openssl zlib ]; 27 25 propagatedBuildInputs = [ six protobuf ]