python310Packages.python-Levenshtein 0 -> 1 attrpath: python310Packages.python-Levenshtein Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/62jxjipbfxndjfv3lk0m2y0fi45075sz-packages.json.drv building '/nix/store/62jxjipbfxndjfv3lk0m2y0fi45075sz-packages.json.drv'... Going to be running update for following packages: - python3.10-levenshtein-0.21.0 Press Enter key to continue... Running update for: - python3.10-levenshtein-0.21.0: UPDATING ... - python3.10-levenshtein-0.21.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/levenshtein/default.nix b/pkgs/development/python-modules/levenshtein/default.nix index 61da9ab75910..a8d3a6399e65 100644 --- a/pkgs/development/python-modules/levenshtein/default.nix +++ b/pkgs/development/python-modules/levenshtein/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "levenshtein"; - version = "0.21.0"; + version = "0.21.1"; format = "pyproject"; disabled = pythonOlder "3.6"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "maxbachmann"; repo = "Levenshtein"; rev = "refs/tags/v${version}"; - hash = "sha256-j28OQkJymkh6tIGYLoZLad7OUUImjZqXdqM2zU3haac="; + hash = "sha256-I1kVGbZI1hQRNv0e44giWiMqmeqaqFZks20IyFQ9VIU="; }; nativeBuildInputs = [ No auto update branch exists Old version 0.21.0" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , fetchFromGitHub , pythonOlder , cmake , cython , pytestCheckHook , rapidfuzz , rapidfuzz-cpp , scikit-build }: buildPythonPackage rec { pname = "levenshtein"; version = "0.21.1"; format = "pyproject"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "maxbachmann"; repo = "Levenshtein"; rev = "refs/tags/v${version}"; hash = "sha256-I1kVGbZI1hQRNv0e44giWiMqmeqaqFZks20IyFQ9VIU="; }; nativeBuildInputs = [ cmake cython scikit-build ]; dontUseCmakeConfigure = true; buildInputs = [ rapidfuzz-cpp ]; env.NIX_CFLAGS_COMPILE = toString (lib.optionals (stdenv.cc.isClang && stdenv.isDarwin) [ "-fno-lto" # work around https://github.com/NixOS/nixpkgs/issues/19098 ]); propagatedBuildInputs = [ rapidfuzz ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "Levenshtein" ]; meta = with lib; { description = "Functions for fast computation of Levenshtein distance and string similarity"; homepage = "https://github.com/maxbachmann/Levenshtein"; changelog = "https://github.com/maxbachmann/Levenshtein/blob/${src.rev}/HISTORY.md"; license = licenses.gpl2Plus; maintainers = with maintainers; [ fab ]; }; }