2019-08-03 16:21:00 -05:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, protobuf, grpcio }:
|
2018-07-05 03:14:51 -04:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "grpcio-tools";
|
2020-09-09 18:01:00 -05:00
|
|
|
version = "1.32.0";
|
2018-07-05 03:14:51 -04:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-09-09 18:01:00 -05:00
|
|
|
sha256 = "28547272c51e1d2d343685b9f531e85bb90ad7bd93e726ba646b5627173cbc47";
|
2018-07-05 03:14:51 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-08-03 16:21:00 -05:00
|
|
|
propagatedBuildInputs = [ protobuf grpcio ];
|
2018-07-05 03:14:51 -04:00
|
|
|
|
|
|
|
# no tests in the package
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Protobuf code generator for gRPC";
|
2019-08-03 16:21:00 -05:00
|
|
|
license = licenses.asl20;
|
2018-07-05 03:14:51 -04:00
|
|
|
homepage = "https://grpc.io/grpc/python/";
|
2020-02-26 15:21:12 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-07-05 03:14:51 -04:00
|
|
|
};
|
|
|
|
}
|