26 lines
699 B
Nix
26 lines
699 B
Nix
|
# WARNING: This file was automatically generated. You should avoid editing it.
|
||
|
# If you run pynixify again, the file will be either overwritten or
|
||
|
# deleted, and you will lose the changes you made to it.
|
||
|
|
||
|
{ buildPythonPackage, deprecated, fetchPypi, lib, packaging }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "redis";
|
||
|
version = "4.1.4";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "01i3kb52irz3aspzs6djm49x9fx7am7y4cqp4s23zngxi7ghr6hx";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ deprecated packaging ];
|
||
|
|
||
|
# TODO FIXME
|
||
|
doCheck = false;
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Python client for Redis database and key-value store";
|
||
|
homepage = "https://github.com/redis/redis-py";
|
||
|
};
|
||
|
}
|