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