Merge pull request #198933 from r-ryantm/auto-update/python310Packages.pipdeptree

python310Packages.pipdeptree: 2.3.1 -> 2.3.3
This commit is contained in:
Fabian Affolter 2022-11-03 16:41:26 +01:00 committed by GitHub
commit d8c630173c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,16 +14,16 @@
buildPythonPackage rec {
pname = "pipdeptree";
version = "2.3.1";
version = "2.3.3";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "naiquevin";
owner = "tox-dev";
repo = "pipdeptree";
rev = "refs/tags/${version}";
hash = "sha256-X3SVQzBg+QjBSewRsfiyLqIea0duhe1nUf8ancWLvcI=";
hash = "sha256-ivqu9b+4FhGa5y+WnKRk4nF6MR4Vj62pSs2d7ycIZMc=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
@ -38,7 +38,9 @@ buildPythonPackage rec {
];
passthru.optional-dependencies = {
graphviz = [ graphviz ];
graphviz = [
graphviz
];
};
checkInputs = [
@ -54,7 +56,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Command line utility to show dependency tree of packages";
homepage = "https://github.com/naiquevin/pipdeptree";
homepage = "https://github.com/tox-dev/pipdeptree";
changelog = "https://github.com/tox-dev/pipdeptree/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ charlesbaynham ];
};