pipdeptree: init at 2.2.1

Add package pipdeptree
main
Charles Baynham 2 years ago committed by ehmry
parent d7c8c8194f
commit 0950065dae
  1. 6
      maintainers/maintainer-list.nix
  2. 41
      pkgs/development/python-modules/pipdeptree/default.nix
  3. 2
      pkgs/top-level/python-packages.nix

@ -2067,6 +2067,12 @@
githubId = 8228888;
name = "Charlie Hanley";
};
charlesbaynham = {
email = "charlesbaynham@gmail.com";
github = "charlesbaynham";
githubId = 4397637;
name = "Charles Baynham";
};
CharlesHD = {
email = "charleshdespointes@gmail.com";
github = "CharlesHD";

@ -0,0 +1,41 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, tox
, pip
}:
buildPythonPackage rec {
pname = "pipdeptree";
version = "2.2.1";
format = "pyproject";
disabled = pythonOlder "3.4";
src = fetchFromGitHub {
owner = "naiquevin";
repo = "pipdeptree";
rev = "${version}";
sha256 = "sha256-CL0li/79qptOtOGLwder5s0+6zv7+PUnl+bD6p+XBtA=";
};
propagatedBuildInputs = [
pip
];
checkInputs = [
tox
];
pythonImportsCheck = [
"pipdeptree"
];
meta = with lib; {
description = "Command line utility to show dependency tree of packages";
homepage = "https://github.com/naiquevin/pipdeptree";
license = licenses.mit;
maintainers = with maintainers; [ charlesbaynham ];
};
}

@ -6294,6 +6294,8 @@ in {
pipdate = callPackage ../development/python-modules/pipdate { };
pipdeptree = callPackage ../development/python-modules/pipdeptree { };
pipenv-poetry-migrate = callPackage ../development/python-modules/pipenv-poetry-migrate { };
pip-tools = callPackage ../development/python-modules/pip-tools { };

Loading…
Cancel
Save