{ lib , buildPythonPackage , fetchPypi , google-api-core , proto-plus , protobuf , pytest-asyncio , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "google-cloud-redis"; version = "2.11.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-dWpsiitG58iCw8z8Hd10eAXXfRRBlq90m0cs1YjeMqE="; }; propagatedBuildInputs = [ google-api-core proto-plus protobuf ] ++ google-api-core.optional-dependencies.grpc; nativeCheckInputs = [ pytestCheckHook pytest-asyncio ]; pythonImportsCheck = [ "google.cloud.redis" "google.cloud.redis_v1" "google.cloud.redis_v1beta1" ]; meta = with lib; { description = "Google Cloud Memorystore for Redis API client library"; homepage = "https://github.com/googleapis/python-redis"; changelog = "https://github.com/googleapis/python-redis/blob/v${version}/CHANGELOG.md"; license = licenses.asl20; maintainers = with maintainers; [ SuperSandro2000 ]; }; }