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