python310Packages.google-cloud-iam-logging: 1.0.6 -> 1.1.0

Changelog: https://github.com/googleapis/python-iam-logging/blob/v1.1.0/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2022-12-28 13:05:08 +01:00
parent 8e3b49b456
commit 9a911023c1

View File

@ -5,6 +5,7 @@
, grpc-google-iam-v1
, mock
, proto-plus
, protobuf
, pytest-asyncio
, pytestCheckHook
, pythonOlder
@ -12,21 +13,22 @@
buildPythonPackage rec {
pname = "google-cloud-iam-logging";
version = "1.0.6";
version = "1.1.0";
format = "setuptools";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-XiuEki6bNKZ8CzfcBBjnDbAh2yEADZohpP991OTf2DI=";
hash = "sha256-q+R8l14wD0PNxP1xKwZcXlbyln3uwoscAsOvletuetg=";
};
propagatedBuildInputs = [
google-api-core
grpc-google-iam-v1
proto-plus
];
protobuf
] ++ google-api-core.optional-dependencies.grpc;
checkInputs = [
mock