package/python-google-auth: new package

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
James Hilliard 2023-12-14 12:24:36 -07:00 committed by Thomas Petazzoni
parent 34b9fa1caa
commit 9ffb74fd91
4 changed files with 29 additions and 0 deletions

View File

@ -1104,6 +1104,7 @@ menu "External python modules"
source "package/python-gitdb2/Config.in"
source "package/python-gnupg/Config.in"
source "package/python-gobject/Config.in"
source "package/python-google-auth/Config.in"
source "package/python-gpiozero/Config.in"
source "package/python-greenlet/Config.in"
source "package/python-grpcio/Config.in"

View File

@ -0,0 +1,9 @@
config BR2_PACKAGE_PYTHON_GOOGLE_AUTH
bool "python-google-auth"
select BR2_PACKAGE_PYTHON_CACHETOOLS # runtime
select BR2_PACKAGE_PYTHON_PYASN1_MODULES # runtime
select BR2_PACKAGE_PYTHON_RSA # runtime
help
Google Authentication Library.
https://github.com/googleapis/google-auth-library-python

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/google-auth/json
md5 40413bc699c6e02d7732e7e09e8cec0c google-auth-2.25.2.tar.gz
sha256 42f707937feb4f5e5a39e6c4f343a17300a459aaf03141457ba505812841cc40 google-auth-2.25.2.tar.gz
# Locally computed sha256 checksums
sha256 c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-google-auth
#
################################################################################
PYTHON_GOOGLE_AUTH_VERSION = 2.25.2
PYTHON_GOOGLE_AUTH_SOURCE = google-auth-$(PYTHON_GOOGLE_AUTH_VERSION).tar.gz
PYTHON_GOOGLE_AUTH_SITE = https://files.pythonhosted.org/packages/05/77/84608894384e02f3b0b2621b09ecb0b85e57ba368f13eecbbc43cd1b8719
PYTHON_GOOGLE_AUTH_SETUP_TYPE = setuptools
PYTHON_GOOGLE_AUTH_LICENSE = Apache-2.0
PYTHON_GOOGLE_AUTH_LICENSE_FILES = LICENSE
$(eval $(python-package))