
* py-google-cloud-storage: add new versions * py-google-api-core: add new versions * py-proto-plus: add new package * py-google-api-core: add grpc variant * py-google-api-core: add grpc variant * py-google-api-core: add missing prefix * py-google-cloud-batch: add new package * py-google-cloud-logging: add new package * py-google-cloud-appengine-logging: add new package * py-google-cloud-audit-log: add new package * py-grpc-google-iam-v1: add new package * py-proto-plus: remove obvious dependency * Whitespace * Whitespace * py-google-cloud-audit-log: correct conflict * py-proto-plus: correct dependency type * Whitespace * py-google-auth: add new version * py-google-resumable-media: add new version * py-google-cloud-storage: constrain version of dependency Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * py-grpcio-status: use newer version * py-google-resumable-media: add upper bound of dependency * Add types of dependencies. * py-grpcio: add new version --------- Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
41 lines
2.0 KiB
Python
41 lines
2.0 KiB
Python
# 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 PyGoogleAuth(PythonPackage):
|
|
"""This library simplifies using Google's various server-to-server
|
|
authentication mechanisms to access Google APIs."""
|
|
|
|
homepage = "https://github.com/GoogleCloudPlatform/google-auth-library-python"
|
|
pypi = "google-auth/google-auth-1.6.3.tar.gz"
|
|
|
|
license("Apache-2.0")
|
|
|
|
version("2.27.0", sha256="e863a56ccc2d8efa83df7a80272601e43487fa9a728a376205c86c26aaefa821")
|
|
version("2.20.0", sha256="030af34138909ccde0fbce611afc178f1d65d32fbff281f25738b1fe1c6f3eaa")
|
|
version("2.16.2", sha256="07e14f34ec288e3f33e00e2e3cc40c8942aa5d4ceac06256a28cd8e786591420")
|
|
version("2.11.0", sha256="ed65ecf9f681832298e29328e1ef0a3676e3732b2e56f41532d45f70a22de0fb")
|
|
version("2.3.2", sha256="2dc5218ee1192f9d67147cece18f47a929a9ef746cb69c50ab5ff5cfc983647b")
|
|
version("1.6.3", sha256="0f7c6a64927d34c1a474da92cfc59e552a5d3b940d3266606c6a28b72888b9e4")
|
|
|
|
variant("aiohttp", default=False, when="@1.22.1:", description="Enables aiohttp support")
|
|
|
|
depends_on("py-setuptools", type=("build", "run"))
|
|
depends_on("py-cachetools@2:5", when="@2.11:", type=("build", "run"))
|
|
depends_on("py-cachetools@2:4", when="@2.3", type=("build", "run"))
|
|
depends_on("py-cachetools@2:", type=("build", "run"))
|
|
depends_on("py-pyasn1-modules@0.2.1:", type=("build", "run"))
|
|
depends_on("py-rsa@3.1.4:4", when="@2.3:", type=("build", "run"))
|
|
depends_on("py-rsa@3.1.4:", type=("build", "run"))
|
|
depends_on("py-six@1.9:", when="@:2.22", type=("build", "run"))
|
|
depends_on("py-urllib3@2.0.5:", when="@2.23.1", type=("build", "run"))
|
|
depends_on("py-urllib3@:1", when="@2.18:2.23.0", type=("build", "run"))
|
|
|
|
with when("+aiohttp"):
|
|
depends_on("py-aiohttp@3.6.2:3", type=("build", "run"))
|
|
depends_on("py-requests@2.20:2", when="@1.30.2:", type=("build", "run"))
|