Files
nixpkgs/pkgs/development/python-modules/editdistpy/default.nix
2025-06-12 23:04:08 +05:00

66 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
cython,
symspellpy,
numpy,
editdistpy,
}:
buildPythonPackage rec {
pname = "editdistpy";
version = "0.1.6";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "mammothb";
repo = "editdistpy";
tag = "v${version}";
hash = "sha256-bUdwhMFDIhHuIlcqIZt6mSh8xwW/2igw0QiWGvQBLC8=";
};
build-system = [
setuptools
cython
];
# error: infinite recursion encountered
doCheck = false;
nativeCheckInputs = [
pytestCheckHook
symspellpy
numpy
];
preCheck = ''
rm -r editdistpy
'';
passthru.tests = {
check = editdistpy.overridePythonAttrs (_: {
doCheck = true;
});
};
pythonImportsCheck = [ "editdistpy" ];
meta = {
description = "Fast Levenshtein and Damerau optimal string alignment algorithms";
homepage = "https://github.com/mammothb/editdistpy";
changelog = "https://github.com/mammothb/editdistpy/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ vizid ];
};
}