python310Packages.Mako 0 -> 1 attrpath: python310Packages.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] Going to be running update for following packages: - python3.10-mako-1.2.4 Press Enter key to continue... Running update for: - python3.10-mako-1.2.4: UPDATING ... - python3.10-mako-1.2.4: 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 d9b3ecefc9ed..02ecefb4dc38 100644 --- a/pkgs/development/python-modules/mako/default.nix +++ b/pkgs/development/python-modules/mako/default.nix @@ -19,7 +19,7 @@ buildPythonPackage rec { pname = "mako"; - version = "1.2.4"; + version = "1.3.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -27,7 +27,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "Mako"; inherit version; - hash = "sha256-1go5A9w7sBoYrWqJzb4uTq3GnAvI7x43c7pT1Ew/ejQ="; + hash = "sha256-46nTiP0A6HBD7b6HkvRYgKwBFOnErcafbpv7LFXjsRs="; }; propagatedBuildInputs = [ No auto update branch exists Old version 1.2.4" 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.0"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { pname = "Mako"; inherit version; hash = "sha256-46nTiP0A6HBD7b6HkvRYgKwBFOnErcafbpv7LFXjsRs="; }; 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 ]; }; }