python312Packages.pipdeptree 2.16.0 -> 2.16.1 https://github.com/tox-dev/pipdeptree/releases attrpath: python312Packages.pipdeptree 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/yv49yf3wn0lcyj6hd3hs8qdsj5f1d86l-packages.json.drv building '/nix/store/yv49yf3wn0lcyj6hd3hs8qdsj5f1d86l-packages.json.drv'... Going to be running update for following packages: - python3.12-pipdeptree-2.16.0 Press Enter key to continue... Running update for: - python3.12-pipdeptree-2.16.0: UPDATING ... - python3.12-pipdeptree-2.16.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/pipdeptree/default.nix b/pkgs/development/python-modules/pipdeptree/default.nix index dcedfb646111..3537c151e6f4 100644 --- a/pkgs/development/python-modules/pipdeptree/default.nix +++ b/pkgs/development/python-modules/pipdeptree/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "pipdeptree"; - version = "2.16.0"; + version = "2.16.1"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "tox-dev"; repo = "pipdeptree"; rev = "refs/tags/${version}"; - hash = "sha256-KxjsT8hf+IbQVL+mzjrOkGCEJ0m5IqxdnDVWzbQbAhU="; + hash = "sha256-aOAFM8b0kOZT5/afZigZjJDvS2CyqghY6GATzeyySB4="; }; nativeBuildInputs = [ No auto update branch exists Old version 2.16.0" not present in master derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , pythonOlder , diff-cover , graphviz , hatchling , hatch-vcs , pytest-mock , pytestCheckHook , pip , virtualenv }: buildPythonPackage rec { pname = "pipdeptree"; version = "2.16.1"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "tox-dev"; repo = "pipdeptree"; rev = "refs/tags/${version}"; hash = "sha256-aOAFM8b0kOZT5/afZigZjJDvS2CyqghY6GATzeyySB4="; }; nativeBuildInputs = [ hatchling hatch-vcs ]; propagatedBuildInputs = [ pip ]; passthru.optional-dependencies = { graphviz = [ graphviz ]; }; nativeCheckInputs = [ diff-cover pytest-mock pytestCheckHook virtualenv ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies); pythonImportsCheck = [ "pipdeptree" ]; disabledTests = [ # Don't run console tests "test_console" ]; meta = with lib; { description = "Command line utility to show dependency tree of packages"; homepage = "https://github.com/tox-dev/pipdeptree"; changelog = "https://github.com/tox-dev/pipdeptree/releases/tag/${version}"; license = licenses.mit; maintainers = with maintainers; [ charlesbaynham ]; }; }