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