From e6ba17d3ede90de7e5fa82e2cdd9bed27971fd93 Mon Sep 17 00:00:00 2001 From: ryota2357 Date: Sun, 30 Nov 2025 13:48:17 +0900 Subject: [PATCH] python3Packages.levenshtein: rename owner --- pkgs/development/python-modules/levenshtein/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/levenshtein/default.nix b/pkgs/development/python-modules/levenshtein/default.nix index 9b1b1ca28f85..628f89cf40a4 100644 --- a/pkgs/development/python-modules/levenshtein/default.nix +++ b/pkgs/development/python-modules/levenshtein/default.nix @@ -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 ]; };