25 lines
687 B
Nix
25 lines
687 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.
|
|
|
|
{ async-timeout, buildPythonPackage, fetchPypi, hiredis, lib }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aioredis";
|
|
version = "1.3.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0fi7jd5hlx8cnv1m97kv9hc4ih4l8v15wzkqwsp73is4n0qazy0m";
|
|
};
|
|
|
|
propagatedBuildInputs = [ async-timeout hiredis ];
|
|
|
|
# TODO FIXME
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "asyncio (PEP 3156) Redis support";
|
|
homepage = "https://github.com/aio-libs/aioredis";
|
|
};
|
|
}
|