22 buildPythonPackage rec {
25 format = "setuptools";
27 disabled = pythonOlder "3.7";
30 inherit pname version;
31 hash = "sha256-DatJXNV1MGnTvGUKDd6Kj57d4W/FaRtomlZu2lgQDQ8=";
34 propagatedBuildInputs = [
39 ] ++ lib.optionals (pythonOlder "3.8") [
43 passthru.optional-dependencies = {
54 pythonImportsCheck = [
64 # Tests require a running redis
68 description = "Python client for Redis key-value store";
69 homepage = "https://github.com/redis/redis-py";
70 changelog = "https://github.com/redis/redis-py/releases/tag/v${version}";
71 license = with licenses; [ mit ];