nixpkgs/pkgs/development/python-modules/hiredis/default.nix

32 lines
679 B
Nix
Raw Normal View History

{ lib
2019-01-27 10:53:16 +00:00
, buildPythonPackage
, fetchPypi
, redis
, python
}:
buildPythonPackage rec {
pname = "hiredis";
2020-08-16 17:31:03 +00:00
version = "1.1.0";
2019-01-27 10:53:16 +00:00
src = fetchPypi {
inherit pname version;
2020-08-16 17:31:03 +00:00
sha256 = "996021ef33e0f50b97ff2d6b5f422a0fe5577de21a8873b58a779a5ddd1c3132";
2019-01-27 10:53:16 +00:00
};
propagatedBuildInputs = [ redis ];
checkPhase = ''
mv hiredis _hiredis
2019-01-27 10:53:16 +00:00
${python.interpreter} test.py
'';
pythonImportsCheck = [ "hiredis" ];
2019-01-27 10:53:16 +00:00
meta = with lib; {
2019-01-27 10:53:16 +00:00
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 ];
};
}