about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/hiredis/default.nix
blob: 00ce786b005ddee7eed8d40a67873db279594804 (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
, buildPythonPackage
, fetchPypi
, redis
, python
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "81d6d8e39695f2c37954d1011c0480ef7cf444d4e3ae24bc5e89ee5de360139a";
  };
  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 ];
  };
}