summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-galaxy-tool-util/package.py
blob: 5b02cb236c430b55f424f3edb03f699dc98fe8af (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
# Copyright 2013-2022 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 PyGalaxyToolUtil(PythonPackage):
    """The Galaxy tool utilities."""

    homepage = "https://github.com/galaxyproject/galaxy"
    pypi = "galaxy-tool-util/galaxy-tool-util-22.1.5.tar.gz"

    version("22.1.5", sha256="60e0372f16255c5c11ec5c49dff432ed3beb97123d026f463cf633bc605c0112")

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

    depends_on("py-galaxy-util@22.1:", type=("build", "run"))
    depends_on("py-galaxy-containers@22.1:", type=("build", "run"))
    depends_on("py-lxml", type=("build", "run"))
    depends_on("py-pydantic", type=("build", "run"))
    depends_on("py-pyyaml", type=("build", "run"))
    depends_on("py-sortedcontainers", type=("build", "run"))
    depends_on("py-typing-extensions", type=("build", "run"))