python3Packages.levenshtein: rename owner

This commit is contained in:
ryota2357
2025-11-30 14:20:53 +09:00
parent 2519871aae
commit e6ba17d3ed
@@ -17,7 +17,7 @@ buildPythonPackage rec {
pyproject = true;
src = fetchFromGitHub {
owner = "maxbachmann";
owner = "rapidfuzz";
repo = "Levenshtein";
tag = "v${version}";
hash = "sha256-EFEyP7eqB4sUQ2ksD67kCr0BEShTiKWbk1PxXOUOGc4=";
@@ -47,8 +47,8 @@ buildPythonPackage rec {
meta = {
description = "Functions for fast computation of Levenshtein distance and string similarity";
homepage = "https://github.com/maxbachmann/Levenshtein";
changelog = "https://github.com/maxbachmann/Levenshtein/blob/v${version}/HISTORY.md";
homepage = "https://github.com/rapidfuzz/Levenshtein";
changelog = "https://github.com/rapidfuzz/Levenshtein/blob/v${version}/HISTORY.md";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ fab ];
};