nixpkgs/pkgs/development/python-modules/py-radix-sr/default.nix
2024-11-15 15:43:06 +00:00

49 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonAtLeast,
}:
buildPythonPackage rec {
pname = "py-radix-sr";
version = "1.0.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "SEKOIA-IO";
repo = "py-radix";
rev = "refs/tags/v${version}";
hash = "sha256-HeXWHdPeW3m0FMtqyHhZGhgCc706Y2xiN8hn9MFt/RM=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "name='py-radix'" "name='py-radix-sr'"
substituteInPlace tests/test_{compat,regression}.py \
--replace-fail assertEquals assertEqual \
--replace-warn assertNotEquals assertNotEqual
'';
pythonImportsCheck = [ "radix" ];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = lib.optionals (pythonAtLeast "3.12") [
# test does not complete on 3.12+
"test_000_check_incref"
];
meta = with lib; {
description = "Python radix tree for IPv4 and IPv6 prefix matching";
homepage = "https://github.com/SEKOIA-IO/py-radix";
license = with licenses; [
isc
bsdOriginal
];
maintainers = teams.wdz.members;
};
}