7 , withTreeVisualization ? false
9 , withXmlSupport ? false
13 buildPythonPackage rec {
18 inherit pname version;
19 sha256 = "sha256-BqO3+o7ZAYewdqjbvlsbYqzulCAdPG6CL1X0SWAe9vI=";
23 doCheck = false; # Tests are (i) not 3.x compatible, (ii) broken under 2.7
24 pythonImportsCheck = [ "ete3" ];
26 propagatedBuildInputs = [ six numpy ]
27 ++ lib.optional withTreeVisualization pyqt5
28 ++ lib.optional withXmlSupport lxml;
31 description = "A Python framework for the analysis and visualization of trees";
32 homepage = "http://etetoolkit.org/";
33 license = licenses.gpl3Only;
34 maintainers = with maintainers; [ delehef ];