Merge pull request #150972 from delehef/master

pythonPackages.ete3: init at 3.1.2
This commit is contained in:
Jonas Heinrich 2022-09-06 14:39:32 +02:00 committed by GitHub
commit 38f7fc92e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 45 additions and 0 deletions

View File

@ -3121,6 +3121,12 @@
github = "delan";
githubId = 465303;
};
delehef = {
name = "Franklin Delehelle";
email = "nix@odena.eu";
github = "delehef";
githubId = 1153808;
};
deliciouslytyped = {
email = "47436522+deliciouslytyped@users.noreply.github.com";
github = "deliciouslytyped";

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

@ -2987,6 +2987,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 {