summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pydantic-tes/package.py
blob: 3d31b2f9378d3d5a33805ee1d7fa6545a9a56e0e (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
# 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 PyPydanticTes(PythonPackage):
    """Pydantic Models for the GA4GH Task Execution Service"""

    homepage = "https://github.com/jmchilton/pydantic-tes"
    pypi = "pydantic-tes/pydantic-tes-0.1.5.tar.gz"

    license("MIT")

    version("0.1.5", sha256="557cc77bdbeae86a6bd155af2d0aeaa5050cd9e3f7d9b17b817f14dd814a7423")

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

    depends_on("py-pydantic", type=("build", "run"))
    depends_on("py-requests", type=("build", "run"))
    depends_on("py-typing-extensions", type=("build", "run"))