python310Packages.google-cloud-kms: 2.12.3 -> 2.13.0

Changelog: https://github.com/googleapis/python-kms/blob/v2.13.0/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2022-12-28 15:25:28 +01:00
parent 3ef0bf5342
commit ba46bd0b62

View file

@ -1,34 +1,45 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, grpc-google-iam-v1
, google-api-core
, libcst
, grpc-google-iam-v1
, mock
, proto-plus
, protobuf
, pytest-asyncio
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "google-cloud-kms";
version = "2.12.3";
version = "2.13.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-ooWxYH4B8HY9ybWj0GQqUnfiFXzLCqyXGGZsocV9Od0=";
hash = "sha256-0nOQnibi1T0JW9NQaKSrNCnfB5EgsnNYMVCEiUsPRdU=";
};
propagatedBuildInputs = [ grpc-google-iam-v1 google-api-core libcst proto-plus ];
propagatedBuildInputs = [
grpc-google-iam-v1
google-api-core
proto-plus
protobuf
] ++ google-api-core.optional-dependencies.grpc;
checkInputs = [ mock pytestCheckHook pytest-asyncio ];
checkInputs = [
mock
pytest-asyncio
pytestCheckHook
];
# Disable tests that need credentials
disabledTests = [ "test_list_global_key_rings" ];
disabledTests = [
"test_list_global_key_rings"
];
pythonImportsCheck = [
"google.cloud.kms"