2019-08-03 22:21:00 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, protobuf, grpcio }:
|
2018-07-05 08:14:51 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "grpcio-tools";
|
2020-05-16 10:21:00 +01:00
|
|
|
version = "1.29.0";
|
2018-07-05 08:14:51 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-16 10:21:00 +01:00
|
|
|
sha256 = "0f681c1ebd5472b804baa391b16dc59d92b065903999566f4776bfbd010bcec9";
|
2018-07-05 08:14:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-08-03 22:21:00 +01:00
|
|
|
propagatedBuildInputs = [ protobuf grpcio ];
|
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
|
|
|
};
|
|
|
|
}
|