mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

2.35.0 (2024-09-17) Features Add cred info to ADC creds Add support for asynchronous AuthorizedSession api Bug Fixes Remove token_info call from token refresh path 2.34.0 (2024-08-13) Features auth: Update get_client_ssl_credentials to support X.509 workload certs Bug Fixes Retry token request on retryable status code (#1563) (f858a15) 2.33.0 (2024-08-06) Features Implement async StaticCredentials using access tokens Implement base classes for credentials and request sessions Bug Fixes metadata: Enhance retry logic for metadata server access in _metadata.py Documentation Update argument for Credentials initialization 2.32.0 (2024-07-08) Features Adds support for X509 workload credential type 2.31.0 (2024-06-27) Features Adds X509 workload cert logic Bug Fixes Added py.typed to MANIFEST.in Pass trust_env kwarg to ClientSession Signed-off-by: Khem Raj <raj.khem@gmail.com>
44 lines
1.1 KiB
BlitzBasic
44 lines
1.1 KiB
BlitzBasic
DESCRIPTION = "Google Authentication Library"
|
|
HOMEPAGE = "https://github.com/googleapis/google-auth-library-python"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
|
|
|
|
inherit pypi setuptools3 ptest
|
|
|
|
SRC_URI[sha256sum] = "f4c64ed4e01e8e8b646ef34c018f8bf3338df0c8e37d8b3bba40e7f574a3278a"
|
|
SRC_URI += " \
|
|
file://run-ptest \
|
|
"
|
|
|
|
PYPI_PACKAGE = "google_auth"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-aioresponses \
|
|
python3-cryptography \
|
|
python3-flask \
|
|
python3-freezegun \
|
|
python3-grpcio \
|
|
python3-mock \
|
|
python3-pyopenssl \
|
|
python3-pytest \
|
|
python3-pytest-asyncio \
|
|
python3-pytest-localserver \
|
|
python3-pyu2f \
|
|
python3-requests \
|
|
python3-responses \
|
|
python3-unittest-automake-output \
|
|
python3-unixadmin \
|
|
"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
|
|
}
|
|
|
|
RDEPENDS:${PN} += "\
|
|
python3-cachetools \
|
|
python3-json \
|
|
python3-pyasn1-modules \
|
|
python3-rsa \
|
|
"
|