nixpkgs/pkgs/development/python-modules/editdistance/default.nix
2023-01-05 01:09:00 +01:00

46 lines
856 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, cython
, pythonOlder
}:
buildPythonPackage rec {
pname = "editdistance";
version = "0.6.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "roy-ht";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-42PEK2KhR7rZLfNX9T45V6on+5CoINfKvntz/YQBJco=";
};
nativeBuildInputs = [
cython
];
preBuild = ''
cythonize --inplace editdistance/bycython.pyx
'';
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"editdistance"
];
meta = with lib; {
description = "Python implementation of the edit distance (Levenshtein distance)";
homepage = "https://github.com/roy-ht/editdistance";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}