fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
65 lines
1.1 KiB
Nix
65 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
pytestCheckHook,
|
|
|
|
pythonOlder,
|
|
|
|
setuptools,
|
|
cython,
|
|
|
|
symspellpy,
|
|
numpy,
|
|
editdistpy,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "editdistpy";
|
|
version = "0.1.4";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mammothb";
|
|
repo = "editdistpy";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-OSJXiuJtZ4w1IiRaZQZH2DDxA0AGoRHp0BKXdysff0Y=";
|
|
};
|
|
|
|
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 = with lib; {
|
|
description = "Fast Levenshtein and Damerau optimal string alignment algorithms";
|
|
homepage = "https://github.com/mammothb/editdistpy";
|
|
changelog = "https://github.com/mammothb/editdistpy/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ vizid ];
|
|
};
|
|
}
|