summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-google-auth_2.40.3.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2025-06-10 11:32:59 +0800
committerKhem Raj <raj.khem@gmail.com>2025-06-09 21:24:12 -0700
commit9791f72929f4a39ac9f0e7a0c2d6a8d65b4d2840 (patch)
tree280a9e37a28a02db025701f73e6b3c29b496a5e0 /meta-python/recipes-devtools/python/python3-google-auth_2.40.3.bb
parente27328ad8f216fd594a482438acacb8d00bbeda0 (diff)
downloadmeta-openembedded-9791f72929f4a39ac9f0e7a0c2d6a8d65b4d2840.tar.gz
python3-google-auth: upgrade 2.40.1 -> 2.40.3
Changelog: ========== - Auth fetch token from default endpoint - Remove unnecessary call to mds service - Retry 504 errors - Remove sync response logs in AuthorizedSession - Update test to consider new error message from cryptography Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-google-auth_2.40.3.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-google-auth_2.40.3.bb45
1 files changed, 45 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-google-auth_2.40.3.bb b/meta-python/recipes-devtools/python/python3-google-auth_2.40.3.bb
new file mode 100644
index 0000000000..b7498dcc99
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-google-auth_2.40.3.bb
@@ -0,0 +1,45 @@
1DESCRIPTION = "Google Authentication Library"
2HOMEPAGE = "https://github.com/googleapis/google-auth-library-python"
3LICENSE = "Apache-2.0"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
5
6inherit pypi setuptools3 ptest
7
8SRC_URI[sha256sum] = "500c3a29adedeb36ea9cf24b8d10858e152f2412e3ca37829b3fa18e33d63b77"
9SRC_URI += " \
10 file://run-ptest \
11"
12
13PYPI_PACKAGE = "google_auth"
14UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
15
16RDEPENDS:${PN}-ptest += " \
17 python3-aioresponses \
18 python3-cryptography \
19 python3-flask \
20 python3-freezegun \
21 python3-grpcio \
22 python3-mock \
23 python3-pyjwt \
24 python3-pyopenssl \
25 python3-pytest \
26 python3-pytest-asyncio \
27 python3-pytest-localserver \
28 python3-pyu2f \
29 python3-requests \
30 python3-responses \
31 python3-unittest-automake-output \
32 python3-unixadmin \
33"
34
35do_install_ptest() {
36 install -d ${D}${PTEST_PATH}/tests
37 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
38}
39
40RDEPENDS:${PN} += "\
41 python3-cachetools \
42 python3-json \
43 python3-pyasn1-modules \
44 python3-rsa \
45"