Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 605 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5, pyparsing 6}: 7 8buildPythonPackage rec { 9 pname = "dot2tex"; 10 version = "2.9.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "7d3e54add7dccdaeb6cc9e61ceaf7b587914cf8ebd6821cfea008acdc1e50d4a"; 15 }; 16 17 # Tests fail with 3.x. Furthermore, package is no longer maintained. 18 disabled = isPy3k; 19 20 propagatedBuildInputs = [ pyparsing ]; 21 22 meta = with stdenv.lib; { 23 description = "Convert graphs generated by Graphviz to LaTeX friendly formats"; 24 homepage = "https://github.com/kjellmf/dot2tex"; 25 license = licenses.mit; 26 }; 27 28}