Merge pull request #295879 from ViZiD/editdistpy

python311Packages.editdistpy: init at 0.1.3
This commit is contained in:
OTABI Tomoya 2024-03-19 00:52:56 +09:00 committed by GitHub
commit 30b430c492
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,45 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
, cython_3
}:
buildPythonPackage rec {
pname = "editdistpy";
version = "0.1.3";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "mammothb";
repo = "editdistpy";
rev = "refs/tags/v${version}";
hash = "sha256-4CtKadKpFmlZnz10NG0404oFl9DkdQwWwRSWgUPdh94=";
};
build-system = [
setuptools
cython_3
];
# for tests need symspellpy package, symspellpy is not in nixpkgs...
doCheck = false;
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 ];
};
}

View File

@ -3635,6 +3635,8 @@ self: super: with self; {
editdistance-s = callPackage ../development/python-modules/editdistance-s { };
editdistpy = callPackage ../development/python-modules/editdistpy { };
editorconfig = callPackage ../development/python-modules/editorconfig { };
edk2-pytool-library = callPackage ../development/python-modules/edk2-pytool-library { };