Skip to content

Commit

Permalink
py-py-tes: add new package (spack#42531)
Browse files Browse the repository at this point in the history
* py-py-tes: add new package

* py-py-tes: add constraint on Python
  • Loading branch information
w8jcik authored Feb 13, 2024
1 parent d1e01d5 commit 0e2a9fe
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions var/spack/repos/builtin/packages/py-py-tes/package.py
Original file line number Diff line number Diff line change
@@ -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"))

0 comments on commit 0e2a9fe

Please sign in to comment.