diff options
-rw-r--r-- | var/spack/repos/builtin/packages/py-py-tes/package.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-py-tes/package.py b/var/spack/repos/builtin/packages/py-py-tes/package.py new file mode 100644 index 0000000000..63e00d31e6 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-py-tes/package.py @@ -0,0 +1,24 @@ +# Copyright 2013-2024 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 PyPyTes(PythonPackage): + """Library for communicating with the GA4GH Task Execution API.""" + + pypi = "py-tes/py-tes-0.4.2.tar.gz" + + license("MIT") + + version("0.4.2", sha256="f6926cd59b7dfc8e37840955bf1cc7c43ad4d99ba5eae100b6156c918617472c") + + depends_on("py-attrs@17.4:", type=("build", "run")) + depends_on("py-future@0.16:", type=("build", "run")) + depends_on("py-python-dateutil@2.6.1:", type=("build", "run")) + depends_on("py-requests@2.18.1:", type=("build", "run")) + + depends_on("py-setuptools", type="build") + depends_on("python@3", type=("build", "run")) |