mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
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:
parent
1a8ca13f38
commit
a2b04f0bf3
@ -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
|
||||||
];
|
];
|
||||||
|
Loading…
Reference in New Issue
Block a user