pythonPackages.ete3: init at 3.1.2

This commit is contained in:
Franklin Delehelle 2021-12-16 14:56:21 +01:00
parent 8eea54eaa8
commit 1d1dc03038
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, numpy
, six
, withTreeVisualization ? false
, lxml
, withXmlSupport ? false
, pyqt4
, pyqt5
}:
buildPythonPackage rec {
pname = "ete3";
version = "3.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "4fc987b8c529889d6608fab1101f1455cb5cbd42722788de6aea9c7d0a8e59e9";
};
doCheck = false; # Tests are (i) not 3.x compatible, (ii) broken under 2.7
pythonImportsCheck = [ "ete3" ];
propagatedBuildInputs = [ six numpy ]
++ lib.optional withTreeVisualization (if isPy3k then pyqt5 else pyqt4)
++ lib.optional withXmlSupport lxml;
meta = with lib; {
description = "A Python framework for the analysis and visualization of trees";
homepage = "http://etetoolkit.org/";
license = licenses.gpl3Only;
maintainers = with maintainers; [ delehef ];
};
}

View file

@ -2560,6 +2560,8 @@ in {
etcd = callPackage ../development/python-modules/etcd { };
ete3 = callPackage ../development/python-modules/ete3 { };
etelemetry = callPackage ../development/python-modules/etelemetry { };
etebase = callPackage ../development/python-modules/etebase {