python310Packages.autoflake 0 -> 1 attrpath: python310Packages.autoflake 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/5gnvg3i5f9kswzbmpmmpay5zaspx7mqm-packages.json.drv building '/nix/store/5gnvg3i5f9kswzbmpmmpay5zaspx7mqm-packages.json.drv'... Going to be running update for following packages: - python3.10-autoflake-2.0.1 Press Enter key to continue... Running update for: - python3.10-autoflake-2.0.1: UPDATING ... - python3.10-autoflake-2.0.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/autoflake/default.nix b/pkgs/development/python-modules/autoflake/default.nix index 9446a6dc2b4c..0897abe77b84 100644 --- a/pkgs/development/python-modules/autoflake/default.nix +++ b/pkgs/development/python-modules/autoflake/default.nix @@ -9,12 +9,12 @@ }: buildPythonPackage rec { pname = "autoflake"; - version = "2.0.1"; + version = "2.2.1"; format = "pyproject"; src = fetchPypi { inherit pname version; - hash = "sha256-HOUgExt/OWkVJC/pHlciH01CQIUpu+Ouk62v7ShlkeA="; + hash = "sha256-Yre2RJppLDybDJFpGbvCFkjacoHoUGvPjT+CgOQx68E="; }; nativeBuildInputs = [ No auto update branch exists Old version 2.0.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , hatchling , pyflakes , pytestCheckHook , pythonOlder , tomli }: buildPythonPackage rec { pname = "autoflake"; version = "2.2.1"; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-Yre2RJppLDybDJFpGbvCFkjacoHoUGvPjT+CgOQx68E="; }; nativeBuildInputs = [ hatchling ]; propagatedBuildInputs = [ pyflakes ] ++ lib.optional (pythonOlder "3.11") tomli; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "autoflake" ]; disabledTests = [ # AssertionError: True is not false "test_is_literal_or_name" ]; meta = with lib; { description = "Tool to remove unused imports and unused variables"; homepage = "https://github.com/myint/autoflake"; license = licenses.mit; maintainers = with maintainers; [ yuriaisaka ]; }; }