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