From 51599c162df4dce28a19608013e8b1ebe65a3ec6 Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Wed, 10 Jun 2026 18:39:39 -0400 Subject: [PATCH] python3Packages.pipdeptree: 2.30.0 -> 3.1.0 Diff: https://github.com/tox-dev/pipdeptree/compare/2.30.0...3.1.0 --- .../python-modules/pipdeptree/default.nix | 24 +++++++++++-------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/pipdeptree/default.nix b/pkgs/development/python-modules/pipdeptree/default.nix index 5e5d8dd7e8f4..c9a977fdd914 100644 --- a/pkgs/development/python-modules/pipdeptree/default.nix +++ b/pkgs/development/python-modules/pipdeptree/default.nix @@ -2,27 +2,28 @@ lib, buildPythonPackage, fetchFromGitHub, - diff-cover, graphviz, hatchling, hatch-vcs, packaging, - pytest-mock, + pip-requirements-parser, pytestCheckHook, - pip, + pytest-mock, + pytest-subprocess, + rich, virtualenv, }: buildPythonPackage rec { pname = "pipdeptree"; - version = "2.30.0"; + version = "3.1.0"; pyproject = true; src = fetchFromGitHub { owner = "tox-dev"; repo = "pipdeptree"; tag = version; - hash = "sha256-nDCd4Bk5P65+fnFM/kC3cbfPanj5P35/bta86/E65i0="; + hash = "sha256-poUults9ev+5aryrZPxnxF/X9u0iivnlc1ceLxB7dys="; }; build-system = [ @@ -30,18 +31,21 @@ buildPythonPackage rec { hatch-vcs ]; - dependencies = [ - pip - packaging - ]; + dependencies = [ packaging ]; optional-dependencies = { graphviz = [ graphviz ]; + index = [ + # nab-index # Unstable + not packaged yet + # nab-python # Same + pip-requirements-parser + ]; + rich = [ rich ]; }; nativeCheckInputs = [ - diff-cover pytest-mock + pytest-subprocess pytestCheckHook virtualenv ]