python310Packages.google-cloud-redis: 2.9.3 -> 2.10.0

Changelog: https://github.com/googleapis/python-redis/blob/v2.10.0/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2022-12-28 16:43:09 +01:00
parent 1a8ca13f38
commit a2b04f0bf3

View File

@ -2,34 +2,32 @@
, buildPythonPackage
, fetchPypi
, google-api-core
, libcst
, mock
, proto-plus
, pytestCheckHook
, protobuf
, pytest-asyncio
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "google-cloud-redis";
version = "2.9.3";
version = "2.10.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-81RPV8GaSU0jpYTyjFWxakpbuBz994eA7I/wyTxmg8Y=";
hash = "sha256-byppjhrBLentcRwMSbuaf3L7wU+rkP2Z92j2zzEPdY0=";
};
propagatedBuildInputs = [
google-api-core
libcst
proto-plus
];
protobuf
] ++ google-api-core.optional-dependencies.grpc;
checkInputs = [
mock
pytestCheckHook
pytest-asyncio
];