Merge pull request #8608 from datakurre/datakurre-master-dot2tex

dot2tex: init at 2.9.0
This commit is contained in:
Arseniy Seroka 2015-07-04 13:58:29 +03:00
commit 36a7b25282
2 changed files with 21 additions and 0 deletions

View file

@ -5434,6 +5434,8 @@ let
docutils = pythonPackages.docutils;
dot2tex = pythonPackages.dot2tex;
doxygen = callPackage ../development/tools/documentation/doxygen {
qt4 = null;
};

View file

@ -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