pythonPackages.dot2tex: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-29 14:49:18 -04:00
parent 8b8155facc
commit 64a24d3f9a
2 changed files with 29 additions and 21 deletions

View File

@@ -0,0 +1,28 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, pyparsing
}:
buildPythonPackage rec {
pname = "dot2tex";
version = "2.9.0";
src = fetchPypi {
inherit pname version;
sha256 = "7d3e54add7dccdaeb6cc9e61ceaf7b587914cf8ebd6821cfea008acdc1e50d4a";
};
# Tests fail with 3.x. Furthermore, package is no longer maintained.
disabled = isPy3k;
propagatedBuildInputs = [ pyparsing ];
meta = with stdenv.lib; {
description = "Convert graphs generated by Graphviz to LaTeX friendly formats";
homepage = "https://github.com/kjellmf/dot2tex";
license = licenses.mit;
};
}