24 lines
748 B
Python
24 lines
748 B
Python
# Copyright Spack Project Developers. See 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"))
|