python311Packages.hg-evolve 0 -> 1 attrpath: python311Packages.hg-evolve 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/capkfc5fsm28p3cdygfy1iw89jxc71cp-packages.json.drv building '/nix/store/capkfc5fsm28p3cdygfy1iw89jxc71cp-packages.json.drv'... Going to be running update for following packages: - python3.11-hg-evolve-11.1.1 Press Enter key to continue... Running update for: - python3.11-hg-evolve-11.1.1: UPDATING ... - python3.11-hg-evolve-11.1.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/hg-evolve/default.nix b/pkgs/development/python-modules/hg-evolve/default.nix index c742b0a57e66..92235b6ce58a 100644 --- a/pkgs/development/python-modules/hg-evolve/default.nix +++ b/pkgs/development/python-modules/hg-evolve/default.nix @@ -6,12 +6,12 @@ buildPythonPackage rec { pname = "hg-evolve"; - version = "11.1.1"; + version = "11.1.2"; format = "setuptools"; src = fetchPypi { inherit pname version; - hash = "sha256-HFZN/JJQPlVB57xcUUxyXrrD4EqPg9vYCRAa4PAQHow="; + hash = "sha256-ug+T1sRSB+J5FyqzdTR7xZtvybhdzBZYI7g4rX14DHo="; }; nativeCheckInputs = [ No auto update branch exists Old version 11.1.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , mercurial }: buildPythonPackage rec { pname = "hg-evolve"; version = "11.1.2"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-ug+T1sRSB+J5FyqzdTR7xZtvybhdzBZYI7g4rX14DHo="; }; nativeCheckInputs = [ mercurial ]; checkPhase = '' runHook preCheck export TESTTMP=$(mktemp -d) export HOME=$TESTTMP cat <$HOME/.hgrc [extensions] evolve = topic = EOF # Shipped tests use the mercurial testing framework, and produce inconsistent results. # Do a quick smoke-test to see if things do what we expect. hg init $TESTTMP/repo pushd $TESTTMP/repo touch a hg add a hg commit -m "init a" hg topic something touch b hg add b hg commit -m "init b" echo hi > b hg amend hg obslog popd runHook postCheck ''; meta = with lib; { description = "Enables the “changeset evolution” feature of Mercurial core"; homepage = "https://www.mercurial-scm.org/doc/evolution/"; maintainers = with maintainers; [ xavierzwirtz lukegb ]; license = licenses.gpl2Plus; }; }