depot/third_party/nixpkgs/pkgs/development/python-modules/hiredis/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

45 lines
911 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
# tested using
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "hiredis";
version = "2.2.2";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "redis";
repo = "hiredis-py";
rev = "refs/tags/v${version}";
fetchSubmodules = true;
hash = "sha256-VfiYXkvLcdokT4P5ks1ReDh5sBe6pdNxWyscmSaJ1Lo=";
};
pythonImportsCheck = [
"hiredis"
];
nativeCheckInputs = [
pytestCheckHook
];
preCheck = ''
rm -rf 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";
changelog = "https://github.com/redis/hiredis-py/blob/v${version}/CHANGELOG.md";
license = licenses.bsd3;
maintainers = with maintainers; [ mmai ];
};
}