
* py-gsutil: add 5.24, fix and add dependencies * Update var/spack/repos/builtin/packages/py-httplib2/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Add httplib2@0.20.4 and pin it in py-gsutil * Add py-cryptography conflict * Update var/spack/repos/builtin/packages/py-httplib2/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * py-pyopenssl: fix py-cryptography conflict --------- Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
19 lines
611 B
Python
19 lines
611 B
Python
# Copyright 2013-2023 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 PyGoogleReauth(PythonPackage):
|
|
"""Google Reauth Library."""
|
|
|
|
homepage = "https://github.com/Google/google-reauth-python"
|
|
pypi = "google-reauth/google-reauth-0.1.1.tar.gz"
|
|
|
|
version("0.1.1", sha256="f9f6852a55c2c5453d581cd01f3d1278e86147c03d008409800390a834235892")
|
|
|
|
depends_on("py-setuptools", type="build")
|
|
depends_on("py-pyu2f", type=("build", "run"))
|