diff options
author | Maciej Wójcik <w8jcik@gmail.com> | 2024-02-13 18:31:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-13 10:31:11 -0700 |
commit | 0e2a9fe26a8fa4163a8523587789d79c94f0457a (patch) | |
tree | b14dabf2dc14ce9d261fe9828d4ff8490852d1db | |
parent | d1e01d5646b43bf3afbd04f2593f529f606426ad (diff) | |
download | spack-0e2a9fe26a8fa4163a8523587789d79c94f0457a.tar.gz spack-0e2a9fe26a8fa4163a8523587789d79c94f0457a.tar.bz2 spack-0e2a9fe26a8fa4163a8523587789d79c94f0457a.tar.xz spack-0e2a9fe26a8fa4163a8523587789d79c94f0457a.zip |
py-py-tes: add new package (#42531)
* py-py-tes: add new package
* py-py-tes: add constraint on Python
-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")) |