Skip to content

Commit 19f2251

Browse files
authored
pythonPackages.grpcio-tools: add setuptools dependency (#98157)
1 parent 3c6ed1a commit 19f2251

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • pkgs/development/python-modules/grpcio-tools

pkgs/development/python-modules/grpcio-tools/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ stdenv, buildPythonPackage, fetchPypi, protobuf, grpcio }:
1+
{ stdenv, buildPythonPackage, fetchPypi, protobuf, grpcio, setuptools }:
22

33
buildPythonPackage rec {
44
pname = "grpcio-tools";
@@ -11,7 +11,7 @@ buildPythonPackage rec {
1111

1212
enableParallelBuilding = true;
1313

14-
propagatedBuildInputs = [ protobuf grpcio ];
14+
propagatedBuildInputs = [ protobuf grpcio setuptools ];
1515

1616
# no tests in the package
1717
doCheck = false;

0 commit comments

Comments
 (0)