python310Packages.google-cloud-resource-manager: 1.6.3 -> 1.7.0

Changelog: https://github.com/googleapis/python-resource-manager/blob/v1.7.0/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2022-12-28 16:40:07 +01:00
parent e31c72e355
commit e24652ee83

View file

@ -1,25 +1,26 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, google-cloud-core
, google-api-core
, google-cloud-core
, grpc-google-iam-v1
, proto-plus
, mock
, protobuf
, pytest-asyncio
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "google-cloud-resource-manager";
version = "1.6.3";
version = "1.7.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-bPipp05loDhXiWlnx5MHt1gFx1Kt47xBIk5hZ3dLyck=";
hash = "sha256-n66Yl3xSGJNxyn2LJVGO8fuXtCKFHLRcCeoWhvxCCok=";
};
propagatedBuildInputs = [
@ -27,10 +28,11 @@ buildPythonPackage rec {
google-cloud-core
grpc-google-iam-v1
proto-plus
];
protobuf
] ++ google-api-core.optional-dependencies.grpc;
checkInputs = [
mock
pytest-asyncio
pytestCheckHook
];