summary refs log tree commit diff
path: root/pkgs/development/python-modules/hiredis/default.nix
blob: e9d5677f8bebc8da137cfad629ab0725ed417d88 (plain) (blame)
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
30
31
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, redis
, python
}:

buildPythonPackage rec {
  pname = "hiredis";
  version = "1.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "996021ef33e0f50b97ff2d6b5f422a0fe5577de21a8873b58a779a5ddd1c3132";
  };
  propagatedBuildInputs = [ redis ];

  checkPhase = ''
    mv hiredis _hiredis
    ${python.interpreter} test.py
  '';
  pythonImportsCheck = [ "hiredis" ];

  meta = with lib; {
    description = "Wraps protocol parsing code in hiredis, speeds up parsing of multi bulk replies";
    homepage = "https://github.com/redis/hiredis-py";
    license = licenses.bsd3;
    maintainers = with maintainers; [ mmai ];
  };
}