python3Packages.hiredis: 2.3.2 -> 2.4.0

https://github.com/redis/hiredis-py/blob/v2.4.0/CHANGELOG.md
This commit is contained in:
Martin Weinelt
2024-10-13 11:03:35 +02:00
parent 828039a1a3
commit fc7f1d8bb5
@@ -4,14 +4,17 @@
fetchFromGitHub,
pythonOlder,
# tested using
# build-system
setuptools,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "hiredis";
version = "2.3.2";
format = "setuptools";
version = "2.4.0";
pyproject = true;
disabled = pythonOlder "3.6";
@@ -20,9 +23,11 @@ buildPythonPackage rec {
repo = "hiredis-py";
rev = "refs/tags/v${version}";
fetchSubmodules = true;
hash = "sha256-7hTGXHNECy+dSsop0ULsNZvGFecCIEv+q46s7t/K7k8=";
hash = "sha256-PnCSf7ZEPNtweQEnWTHCCVCvg5QGxGeBSAZCFHOziDQ=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "hiredis" ];
nativeCheckInputs = [ pytestCheckHook ];