summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-ete3/package.py
blob: 2930c40fa23b4399660887699984510774a1e8fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.package import *


class PyEte3(PythonPackage):
    """The Environment for Tree Exploration (ETE) is a Python programming
    toolkit that assists in the recontruction, manipulation, analysis
    and visualization of phylogenetic trees (although clustering
    trees or any other tree-like data structure are also supported).
    """

    homepage = "http://etetoolkit.org/"
    pypi = "ete3/ete3-3.1.2.tar.gz"

    maintainers("snehring")

    license("GPL-3.0-only")

    version("3.1.2", sha256="4fc987b8c529889d6608fab1101f1455cb5cbd42722788de6aea9c7d0a8e59e9")

    depends_on("py-setuptools", type="build")

    depends_on("py-numpy", type=("build", "run"))
    depends_on("py-pyqt5", type=("build", "run"))
    depends_on("py-lxml", type=("build", "run"))
    depends_on("py-six", type=("build", "run"))