python3Packages.google-cloud-iam: init at 2.0.0

This commit is contained in:
Austin Butler 2020-11-02 17:13:56 -08:00 committed by Jonathan Ringer
parent a7de168b12
commit 2778cf633a
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder
, google_api_core, libcst, mock, proto-plus, pytest-asyncio }:
buildPythonPackage rec {
pname = "google-cloud-iam";
version = "2.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "1zxsx5avs8njiyw32zvsx2yblmmiwxy771x334hbgmy0aqms4lak";
};
propagatedBuildInputs = [ google_api_core libcst proto-plus ];
checkInputs = [ mock pytestCheckHook pytest-asyncio ];
meta = with lib; {
description = "Google Cloud IAM API client library";
homepage = "https://github.com/googleapis/python-iam";
license = licenses.asl20;
maintainers = with maintainers; [ austinbutler ];
};
}

View file

@ -2470,6 +2470,8 @@ in {
google_cloud_firestore = callPackage ../development/python-modules/google_cloud_firestore { };
google-cloud-iam = callPackage ../development/python-modules/google-cloud-iam { };
google_cloud_iot = callPackage ../development/python-modules/google_cloud_iot { };
google_cloud_kms = callPackage ../development/python-modules/google_cloud_kms { };