summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-itolapi/package.py
blob: 57ceb7be7587c3d549939aebb91fe425bf8837a8 (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
# 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 PyItolapi(PythonPackage):
    """API for interacting with itol.embl.de"""

    homepage = "https://github.com/albertyw/itolapi"
    pypi = "itolapi/itolapi-4.1.2.tar.gz"

    maintainers("snehring")

    license("MIT")

    version("4.1.2", sha256="37a866a117a80d3d72a6eb6b2cba30444751c644cc6bc4242f050750375a8397")

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

    depends_on("py-requests@2", type=("build", "run"))