python3Packages.editdistpy: 0.1.5 -> 0.1.6

This commit is contained in:
Radik Islamov
2025-06-12 23:04:08 +05:00
parent 18db32bd6f
commit 42f12cb2fd

View File

@@ -17,16 +17,16 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "editdistpy"; pname = "editdistpy";
version = "0.1.5"; version = "0.1.6";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.9";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mammothb"; owner = "mammothb";
repo = "editdistpy"; repo = "editdistpy";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-kTaJkx1fdd2Rl4uhzxdZAFP/ArsM0qTPweJ1jlUcjxQ="; hash = "sha256-bUdwhMFDIhHuIlcqIZt6mSh8xwW/2igw0QiWGvQBLC8=";
}; };
build-system = [ build-system = [
@@ -55,11 +55,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "editdistpy" ]; pythonImportsCheck = [ "editdistpy" ];
meta = with lib; { meta = {
description = "Fast Levenshtein and Damerau optimal string alignment algorithms"; description = "Fast Levenshtein and Damerau optimal string alignment algorithms";
homepage = "https://github.com/mammothb/editdistpy"; homepage = "https://github.com/mammothb/editdistpy";
changelog = "https://github.com/mammothb/editdistpy/releases/tag/v${version}"; changelog = "https://github.com/mammothb/editdistpy/releases/tag/${src.tag}";
license = licenses.mit; license = lib.licenses.mit;
maintainers = with maintainers; [ vizid ]; maintainers = with lib.maintainers; [ vizid ];
}; };
} }