{ lib, buildPythonPackage, fetchPypi, protobuf, grpcio, setuptools }: buildPythonPackage rec { pname = "grpcio-tools"; version = "1.43.0"; src = fetchPypi { inherit pname version; sha256 = "f42f1d713096808b1b0472dd2a3749b712d13f0092dab9442d9c096446e860b2"; }; outputs = [ "out" "dev" ]; enableParallelBuilding = true; propagatedBuildInputs = [ protobuf grpcio setuptools ]; # no tests in the package doCheck = false; pythonImportsCheck = [ "grpc_tools" ]; meta = with lib; { description = "Protobuf code generator for gRPC"; license = licenses.asl20; homepage = "https://grpc.io/grpc/python/"; maintainers = with maintainers; [ ]; }; }