15 buildPythonPackage rec {
20 disabled = pythonOlder "3.7";
22 src = fetchFromGitHub {
25 rev = "refs/tags/${version}";
26 hash = "sha256-ivqu9b+4FhGa5y+WnKRk4nF6MR4Vj62pSs2d7ycIZMc=";
29 SETUPTOOLS_SCM_PRETEND_VERSION = version;
36 propagatedBuildInput = [
40 passthru.optional-dependencies = {
51 ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
53 pythonImportsCheck = [
58 description = "Command line utility to show dependency tree of packages";
59 homepage = "https://github.com/tox-dev/pipdeptree";
60 changelog = "https://github.com/tox-dev/pipdeptree/releases/tag/${version}";
61 license = licenses.mit;
62 maintainers = with maintainers; [ charlesbaynham ];