mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
74 lines
1.2 KiB
Nix
74 lines
1.2 KiB
Nix
{ lib
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
|
|
# propagates
|
|
, async-timeout
|
|
, deprecated
|
|
, importlib-metadata
|
|
, packaging
|
|
, typing-extensions
|
|
|
|
# extras: hiredis
|
|
, hiredis
|
|
|
|
# extras: ocsp
|
|
, cryptography
|
|
, pyopenssl
|
|
, requests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "redis";
|
|
version = "5.0.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-XOpsDTNcmnMypGDthynOq7TQxInHKFsKhtu/igF70SA=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
async-timeout
|
|
deprecated
|
|
packaging
|
|
typing-extensions
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
|
importlib-metadata
|
|
];
|
|
|
|
passthru.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 ];
|
|
};
|
|
}
|