aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/aioredis/default.nix
blob: 7b391a5b42f1418d13f8eb7f76027b26fb9ee499 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, buildPythonPackage, fetchPypi
, pkgs, async-timeout, hiredis, isPyPy, isPy27
}:

buildPythonPackage rec {
  pname = "aioredis";
  version = "1.2.0";

  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "06i53xpz4x6qrmdxqwvkpd17lbgmwfq20v0jrwc73f5y57kjpml4";
  };

  propagatedBuildInputs = [
    async-timeout
  ] ++ stdenv.lib.optional (!isPyPy) hiredis;

  # Wants to run redis-server, hardcoded FHS paths, too much trouble.
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Asyncio (PEP 3156) Redis client library";
    homepage = https://github.com/aio-libs/aioredis;
    license = licenses.mit;
    maintainers = with maintainers; [ mmai ];
  };
}