python311Packages.pipdeptree: 2.9.5 -> 2.10.2

Changelog: https://github.com/tox-dev/pipdeptree/releases/tag/2.10.2
This commit is contained in:
Fabian Affolter 2023-07-20 21:50:30 +02:00
parent ebaae879a7
commit c5fed12944

View File

@ -14,16 +14,16 @@
buildPythonPackage rec {
pname = "pipdeptree";
version = "2.9.5";
version = "2.10.2";
format = "pyproject";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "tox-dev";
repo = "pipdeptree";
rev = "refs/tags/${version}";
hash = "sha256-Fy9wDPYY1FRRRcu6ucOccFYU6PjfX6SggXIIGEhSFMM=";
hash = "sha256-W7aCSekm6vZSlEAgwgrwmUBV2/jCiBol7JyNMYUVpPY=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
@ -54,6 +54,11 @@ buildPythonPackage rec {
"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";