python3Packages.pydot_ng: remove

- deprecated in favour of `pydot`
This commit is contained in:
Ben Darwin 2020-10-07 16:04:33 -04:00 committed by Jon
parent a2e6852a69
commit 07099cdb30
2 changed files with 0 additions and 38 deletions

View file

@ -1,36 +0,0 @@
{ lib, buildPythonPackage, fetchPypi, isPy27
, graphviz
, mock
, pyparsing
, pytest
, unittest2
}:
buildPythonPackage rec {
pname = "pydot_ng";
version = "2.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "8c8073b97aa7030c28118961e2c6c92f046e4cb57aeba7df87146f7baa6530c5";
};
propagatedBuildInputs = [ graphviz pyparsing ];
checkInputs = [
graphviz
mock
pytest
] ++ lib.optionals isPy27 [ unittest2];
checkPhase = ''
pytest
'';
meta = with lib; {
homepage = "https://pypi.python.org/pypi/pydot-ng";
description = "Python 3-compatible update of pydot, a Python interface to Graphviz's Dot";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin jonringer ];
};
}

View file

@ -4895,8 +4895,6 @@ in {
pydot = callPackage ../development/python-modules/pydot { inherit (pkgs) graphviz; };
pydot_ng = callPackage ../development/python-modules/pydot_ng { graphviz = pkgs.graphviz; };
pydotplus = callPackage ../development/python-modules/pydotplus { };
pydrive = callPackage ../development/python-modules/pydrive { };