diff options
Diffstat (limited to 'pkgs/development/python-modules/grpcio-testing/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/grpcio-testing/default.nix | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/grpcio-testing/default.nix b/pkgs/development/python-modules/grpcio-testing/default.nix index 54022a0433ce..263e57ed8f3a 100644 --- a/pkgs/development/python-modules/grpcio-testing/default.nix +++ b/pkgs/development/python-modules/grpcio-testing/default.nix @@ -1,11 +1,12 @@ -{ lib -, buildPythonPackage -, fetchPypi -, grpcio -, protobuf -, pythonOlder -, pythonRelaxDepsHook -, setuptools +{ + lib, + buildPythonPackage, + fetchPypi, + grpcio, + protobuf, + pythonOlder, + pythonRelaxDepsHook, + setuptools, }: buildPythonPackage rec { @@ -25,18 +26,14 @@ buildPythonPackage rec { --replace-fail '"grpcio>={version}".format(version=grpc_version.VERSION)' '"grpcio"' ''; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ grpcio protobuf ]; - pythonImportsCheck = [ - "grpc_testing" - ]; + pythonImportsCheck = [ "grpc_testing" ]; # Module has no tests doCheck = false; |
