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

Changelog: ========= Features --------- Add support for Python 3.11 (#466) (ff379e3) Allow representing enums with their unqualified symbolic names in headers (#465) (522b98e) Bug Fixes -------- Major refactoring of Polling, Retry and Timeout logic (#462) (434253d) Require google-auth >= 2.14.1 (#463) (7cc329f) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
27 lines
697 B
BlitzBasic
27 lines
697 B
BlitzBasic
DESCRIPTION = "Google API client core library"
|
|
HOMEPAGE = "https://github.com/googleapis/python-api-core"
|
|
AUTHOR = "Google LLC"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
SRC_URI[sha256sum] = "4b9bb5d5a380a0befa0573b302651b8a9a89262c1730e37bf423cec511804c22"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
${PYTHON_PN}-asyncio \
|
|
${PYTHON_PN}-datetime \
|
|
${PYTHON_PN}-logging \
|
|
${PYTHON_PN}-math \
|
|
"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
${PYTHON_PN}-googleapis-common-protos \
|
|
${PYTHON_PN}-google-auth \
|
|
${PYTHON_PN}-grpcio \
|
|
${PYTHON_PN}-protobuf \
|
|
${PYTHON_PN}-pytz \
|
|
${PYTHON_PN}-requests \
|
|
${PYTHON_PN}-six \
|
|
"
|