33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
# Copyright Spack Project Developers. See 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.3", sha256="06a3b7fa8ed90187b076a8dbbe5b1b62acee94201d3c6e822f55f449601ef6f2")
|
|
version("3.1.2", sha256="4fc987b8c529889d6608fab1101f1455cb5cbd42722788de6aea9c7d0a8e59e9")
|
|
|
|
depends_on("c", type="build") # generated
|
|
|
|
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"))
|