depot/third_party/nixpkgs/pkgs/development/python-modules/editdistance/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

42 lines
841 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
cython,
pdm-backend,
setuptools,
pythonOlder,
}:
buildPythonPackage rec {
pname = "editdistance";
version = "0.8.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "roy-ht";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-Ncdg8S/UHYqJ1uFnHk9qhHMM3Lrop00woSu3PLKvuBI=";
};
nativeBuildInputs = [
cython
pdm-backend
setuptools
];
nativeCheckInputs = [ 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 ];
};
}