summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-gravity/package.py
blob: 48ee84bcc0af4fa2fd5a5f0ddfdbafbc77d619db (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
# 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 PyGravity(PythonPackage):
    """Command-line utilities to assist in managing Galaxy servers"""

    homepage = "https://github.com/galaxyproject/gravity"
    pypi = "gravity/gravity-0.13.6.tar.gz"

    license("MIT")

    version("0.13.6", sha256="6fc2377e7c61b7db9406fb5b5c70bf72c571fb777f1313fc98787ef4cd007394")

    depends_on("python@3.6:", type=("build", "run"))
    depends_on("py-setuptools", type="build")

    depends_on("py-click", type=("build", "run"))
    depends_on("py-supervisor", type=("build", "run"))
    depends_on("py-pyyaml", type=("build", "run"))
    depends_on("py-ruamel-yaml", type=("build", "run"))
    depends_on("py-pydantic", type=("build", "run"))
    depends_on("py-jsonref", type=("build", "run"))