mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-18 01:54:34 +00:00
pythonPackages.grpc_google_iam_v1: init at 0.11.4
This commit is contained in:
parent
f5af8bf5f1
commit
855f9d02e5
@ -0,0 +1,25 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, grpcio
|
||||
, googleapis_common_protos
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "grpc-google-iam-v1";
|
||||
version = "0.11.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "5009e831dcec22f3ff00e89405249d6a838d1449a46ac8224907aa5b0e0b1aec";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ grpcio googleapis_common_protos ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "GRPC library for the google-iam-v1 service";
|
||||
homepage = https://github.com/googleapis/googleapis;
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
@ -2466,6 +2466,8 @@ in {
|
||||
|
||||
grpcio-tools = callPackage ../development/python-modules/grpcio-tools { };
|
||||
|
||||
grpc_google_iam_v1 = callPackage ../development/python-modules/grpc_google_iam_v1 { };
|
||||
|
||||
gspread = callPackage ../development/python-modules/gspread { };
|
||||
|
||||
gyp = callPackage ../development/python-modules/gyp { };
|
||||
|
Loading…
Reference in New Issue
Block a user