mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 14:10:33 +03:00

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
74 lines
1.2 KiB
Nix
74 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
pythonOlder,
|
|
|
|
# build-system
|
|
hatchling,
|
|
|
|
# dependencies
|
|
async-timeout,
|
|
deprecated,
|
|
packaging,
|
|
typing-extensions,
|
|
|
|
# extras: hiredis
|
|
hiredis,
|
|
|
|
# extras: ocsp
|
|
cryptography,
|
|
pyopenssl,
|
|
requests,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "redis";
|
|
version = "6.1.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-ySjiZ61p0waa8oqYI6B3Ju33LH43dk9D3AEj83kowHU=";
|
|
};
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
dependencies = [
|
|
async-timeout
|
|
deprecated
|
|
packaging
|
|
typing-extensions
|
|
];
|
|
|
|
optional-dependencies = {
|
|
hiredis = [ hiredis ];
|
|
ocsp = [
|
|
cryptography
|
|
pyopenssl
|
|
requests
|
|
];
|
|
};
|
|
|
|
pythonImportsCheck = [
|
|
"redis"
|
|
"redis.client"
|
|
"redis.cluster"
|
|
"redis.connection"
|
|
"redis.exceptions"
|
|
"redis.sentinel"
|
|
"redis.utils"
|
|
];
|
|
|
|
# Tests require a running redis
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Python client for Redis key-value store";
|
|
homepage = "https://github.com/redis/redis-py";
|
|
changelog = "https://github.com/redis/redis-py/releases/tag/v${version}";
|
|
license = with licenses; [ mit ];
|
|
};
|
|
}
|