forked from mirrors/nixpkgs
dot2tex: init at 2.9.0
This commit is contained in:
parent
faa468354f
commit
198ea49d8a
|
@ -5432,6 +5432,8 @@ let
|
|||
|
||||
docutils = pythonPackages.docutils;
|
||||
|
||||
dot2tex = pythonPackages.dot2tex;
|
||||
|
||||
doxygen = callPackage ../development/tools/documentation/doxygen {
|
||||
qt4 = null;
|
||||
};
|
||||
|
|
|
@ -16219,5 +16219,24 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
dot2tex = buildPythonPackage rec {
|
||||
name = "dot2tex-2.9.0";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/d/dot2tex/dot2tex-2.9.0.tar.gz";
|
||||
md5 = "2dbaeac905424d0410751235bde4b8b2";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [
|
||||
pyparsing
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Convert graphs generated by Graphviz to LaTeX friendly formats";
|
||||
homepage = "https://github.com/kjellmf/dot2tex";
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
}; in pythonPackages
|
||||
|
|
Loading…
Reference in a new issue