Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/grpcio-tools/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, protobuf, grpcio }:
{ stdenv, buildPythonPackage, fetchPypi, protobuf, grpcio, setuptools }:

buildPythonPackage rec {
pname = "grpcio-tools";
Expand All @@ -11,7 +11,7 @@ buildPythonPackage rec {

enableParallelBuilding = true;

propagatedBuildInputs = [ protobuf grpcio ];
propagatedBuildInputs = [ protobuf grpcio setuptools ];

# no tests in the package
doCheck = false;
Expand Down