mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 14:10:33 +03:00
python313Packages.redis: 5.2.1 -> 6.1.0
https://github.com/redis/redis-py/releases/tag/v5.3.0 https://github.com/redis/redis-py/releases/tag/v6.0.0 https://github.com/redis/redis-py/releases/tag/v6.1.0
This commit is contained in:
parent
08ebc81894
commit
524c7525c4
1 changed files with 11 additions and 7 deletions
|
@ -4,10 +4,12 @@
|
|||
buildPythonPackage,
|
||||
pythonOlder,
|
||||
|
||||
# propagates
|
||||
# build-system
|
||||
hatchling,
|
||||
|
||||
# dependencies
|
||||
async-timeout,
|
||||
deprecated,
|
||||
importlib-metadata,
|
||||
packaging,
|
||||
typing-extensions,
|
||||
|
||||
|
@ -22,22 +24,24 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "redis";
|
||||
version = "5.2.1";
|
||||
format = "setuptools";
|
||||
version = "6.1.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-FvLiLf8h1RJehIFRXjhnEaNMvsUPDkRBPdfZwGClTg8=";
|
||||
hash = "sha256-ySjiZ61p0waa8oqYI6B3Ju33LH43dk9D3AEj83kowHU=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
build-system = [ hatchling ];
|
||||
|
||||
dependencies = [
|
||||
async-timeout
|
||||
deprecated
|
||||
packaging
|
||||
typing-extensions
|
||||
] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
|
||||
];
|
||||
|
||||
optional-dependencies = {
|
||||
hiredis = [ hiredis ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue