pythonPackages.grpcio-tools: add setuptools dependency (#98157)

wip/yesman
Arnout Engelen 4 years ago committed by GitHub
parent 3c6ed1a798
commit 19f22514cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      pkgs/development/python-modules/grpcio-tools/default.nix

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, protobuf, grpcio }:
{ stdenv, buildPythonPackage, fetchPypi, protobuf, grpcio, setuptools }:
buildPythonPackage rec {
pname = "grpcio-tools";
@ -11,7 +11,7 @@ buildPythonPackage rec {
enableParallelBuilding = true;
propagatedBuildInputs = [ protobuf grpcio ];
propagatedBuildInputs = [ protobuf grpcio setuptools ];
# no tests in the package
doCheck = false;

Loading…
Cancel
Save