1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, grpcio
5, googleapis_common_protos
6}:
7
8buildPythonPackage rec {
9 pname = "grpc-google-iam-v1";
10 version = "0.11.4";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "5009e831dcec22f3ff00e89405249d6a838d1449a46ac8224907aa5b0e0b1aec";
15 };
16
17 propagatedBuildInputs = [ grpcio googleapis_common_protos ];
18
19 meta = with stdenv.lib; {
20 description = "GRPC library for the google-iam-v1 service";
21 homepage = https://github.com/googleapis/googleapis;
22 license = licenses.asl20;
23 maintainers = [ maintainers.costrouc ];
24 };
25}