python311Packages.Mako 0 -> 1 attrpath: python311Packages.Mako 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 [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/6pndwsrw8qxbvycprp0fmgpg5h8j9j57-packages.json.drv building '/nix/store/6pndwsrw8qxbvycprp0fmgpg5h8j9j57-packages.json.drv'... Going to be running update for following packages: - python3.11-mako-1.3.0 Press Enter key to continue... Running update for: - python3.11-mako-1.3.0: UPDATING ... - python3.11-mako-1.3.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/mako/default.nix b/pkgs/development/python-modules/mako/default.nix index 0a84359b27b6..f0eda2525fe6 100644 --- a/pkgs/development/python-modules/mako/default.nix +++ b/pkgs/development/python-modules/mako/default.nix @@ -22,7 +22,7 @@ buildPythonPackage rec { pname = "mako"; - version = "1.3.0"; + version = "1.3.2"; pyproject = true; disabled = pythonOlder "3.7"; @@ -30,7 +30,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "Mako"; inherit version; - hash = "sha256-46nTiP0A6HBD7b6HkvRYgKwBFOnErcafbpv7LFXjsRs="; + hash = "sha256-KgyK1/YnQnGzu3Rn3TfPnMbatLwZy2mk7xBmlALeaY4="; }; nativeBuildInputs = [ No auto update branch exists Old version 1.3.0" not present in staging derivation file with contents: { lib , buildPythonPackage , pythonOlder , fetchPypi , isPyPy # build-system , setuptools # propagates , markupsafe # optional-dependencies , babel , lingua # tests , chameleon , mock , pytestCheckHook }: buildPythonPackage rec { pname = "mako"; version = "1.3.2"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { pname = "Mako"; inherit version; hash = "sha256-KgyK1/YnQnGzu3Rn3TfPnMbatLwZy2mk7xBmlALeaY4="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ markupsafe ]; passthru.optional-dependencies = { babel = [ babel ]; lingua = [ lingua ]; }; nativeCheckInputs = [ chameleon mock pytestCheckHook ] ++ lib.flatten (lib.attrValues passthru.optional-dependencies); disabledTests = lib.optionals isPyPy [ # https://github.com/sqlalchemy/mako/issues/315 "test_alternating_file_names" # https://github.com/sqlalchemy/mako/issues/238 "test_file_success" "test_stdin_success" # fails on pypy2.7 "test_bytestring_passthru" ]; meta = with lib; { description = "Super-fast templating language"; homepage = "https://www.makotemplates.org/"; changelog = "https://docs.makotemplates.org/en/latest/changelog.html"; license = licenses.mit; platforms = platforms.unix; maintainers = with maintainers; [ domenkozar ]; }; }