python310Packages.autopep8 0 -> 1 attrpath: python310Packages.autopep8 Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [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/wasimg9ji5paylb8y9gj400cm4kql7nq-packages.json.drv building '/nix/store/wasimg9ji5paylb8y9gj400cm4kql7nq-packages.json.drv'... Going to be running update for following packages: - python3.10-autopep8-2.0.0 Press Enter key to continue... Running update for: - python3.10-autopep8-2.0.0: UPDATING ... - python3.10-autopep8-2.0.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/autopep8/default.nix b/pkgs/development/python-modules/autopep8/default.nix index a5c7cccffb3..f96914906d2 100644 --- a/pkgs/development/python-modules/autopep8/default.nix +++ b/pkgs/development/python-modules/autopep8/default.nix @@ -10,13 +10,13 @@ buildPythonPackage rec { pname = "autopep8"; - version = "2.0.0"; + version = "2.0.1"; src = fetchFromGitHub { owner = "hhatto"; repo = "autopep8"; - rev = "v${version}"; - sha256 = "sha256-77ZVprACHUP8BmylTtvHvJMjb70E1YFKKdQDigAZG6s="; + rev = "refs/tags/v${version}"; + sha256 = "sha256-YEPSsUzJG4MPiiloVAf9m/UiChkhkN0+lK6spycpSvo="; }; patches = [ No auto update branch exists Old version 2.0.0" not present in staging derivation file with contents: { lib , fetchFromGitHub , fetchpatch , buildPythonPackage , pythonOlder , pycodestyle , glibcLocales , tomli , pytestCheckHook }: buildPythonPackage rec { pname = "autopep8"; version = "2.0.1"; src = fetchFromGitHub { owner = "hhatto"; repo = "autopep8"; rev = "refs/tags/v${version}"; hash = "sha256-YEPSsUzJG4MPiiloVAf9m/UiChkhkN0+lK6spycpSvo="; }; propagatedBuildInputs = [ pycodestyle ] ++ lib.optionals (pythonOlder "3.11") [ tomli ]; checkInputs = [ glibcLocales pytestCheckHook ]; LC_ALL = "en_US.UTF-8"; meta = with lib; { changelog = "https://github.com/hhatto/autopep8/releases/tag/v${version}"; description = "A tool that automatically formats Python code to conform to the PEP 8 style guide"; homepage = "https://github.com/hhatto/autopep8"; license = licenses.mit; maintainers = with maintainers; [ bjornfor ]; }; }