15 buildPythonPackage rec {
20 disabled = pythonOlder "3.8";
22 src = fetchFromGitHub {
25 rev = "refs/tags/${version}";
26 hash = "sha256-fzxshqh2QurpbilG0gC3NWnUntTRoxOHPpfpg6bPI98=";
38 passthru.optional-dependencies = {
49 ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
51 pythonImportsCheck = [
56 # Don't run console tests
61 description = "Command line utility to show dependency tree of packages";
62 mainProgram = "pipdeptree";
63 homepage = "https://github.com/tox-dev/pipdeptree";
64 changelog = "https://github.com/tox-dev/pipdeptree/releases/tag/${version}";
65 license = licenses.mit;
66 maintainers = with maintainers; [ charlesbaynham ];