1 { lib, buildPythonPackage, fetchPypi
2 , pkgs, async-timeout, hiredis, isPyPy, isPy27
5 buildPythonPackage rec {
12 inherit pname version;
13 sha256 = "0fi7jd5hlx8cnv1m97kv9hc4ih4l8v15wzkqwsp73is4n0qazy0m";
16 propagatedBuildInputs = [
18 ] ++ lib.optional (!isPyPy) hiredis;
20 # Wants to run redis-server, hardcoded FHS paths, too much trouble.
24 description = "Asyncio (PEP 3156) Redis client library";
25 homepage = "https://github.com/aio-libs/aioredis";
26 license = licenses.mit;
27 maintainers = with maintainers; [ mmai ];