python310Packages.google-cloud-tasks: 2.10.4 -> 2.11.0

Changelog: https://github.com/googleapis/python-tasks/blob/v2.11.0/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2022-12-28 16:19:27 +01:00
parent cacebfa9eb
commit 4481e50972

View File

@ -3,9 +3,9 @@
, fetchPypi
, google-api-core
, grpc-google-iam-v1
, libcst
, mock
, proto-plus
, protobuf
, pytest-asyncio
, pytestCheckHook
, pythonOlder
@ -13,22 +13,22 @@
buildPythonPackage rec {
pname = "google-cloud-tasks";
version = "2.10.4";
version = "2.11.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-ZQ9PQ75yWEEQNyfqO8EyJ66euqL5na2q1TiIgxz8HXA=";
hash = "sha256-TC2uDnD95NUx1LLLLotZK9tJd6JWZa4MjipcE6k07Mo=";
};
propagatedBuildInputs = [
google-api-core
grpc-google-iam-v1
libcst
proto-plus
];
protobuf
] ++ google-api-core.optional-dependencies.grpc;
checkInputs = [
mock
@ -37,7 +37,7 @@ buildPythonPackage rec {
];
disabledTests = [
# requires credentials
# Test requires credentials
"test_list_queues"
];