linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / aioredis / default.nix
blobfe48ba0e1e184374a8f88cb7c14c97336312f3ad
1 { lib, buildPythonPackage, fetchPypi
2 , pkgs, async-timeout, hiredis, isPyPy, isPy27
3 }:
5 buildPythonPackage rec {
6   pname = "aioredis";
7   version = "1.3.1";
9   disabled = isPy27;
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "0fi7jd5hlx8cnv1m97kv9hc4ih4l8v15wzkqwsp73is4n0qazy0m";
14   };
16   propagatedBuildInputs = [
17     async-timeout
18   ] ++ lib.optional (!isPyPy) hiredis;
20   # Wants to run redis-server, hardcoded FHS paths, too much trouble.
21   doCheck = false;
23   meta = with lib; {
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 ];
28   };