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

Upgrade to release 1.6.1: - Added Distribution._local() as a provisional demonstration of how to load metadata for a local package. Implicitly requires that pep517 is installed - Ensure inputs to FastPath are Unicode - Tests now rely on importlib.resources.files (and backport) instead of the older path function. - Support any iterable from find_distributions - Added module and attr attributes to EntryPoint Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
19 lines
820 B
BlitzBasic
19 lines
820 B
BlitzBasic
DESCRIPTION = "Read metadata from Python packages"
|
|
HOMEPAGE = "https://pypi.org/project/importlib-metadata/"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=e88ae122f3925d8bde8319060f2ddb8e"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
SRC_URI = "https://files.pythonhosted.org/packages/aa/9a/8483b77e2decd95963d7e34bc9bc91a26e71fd89b57d8cf978ca24747c7f/importlib_metadata-1.6.1.tar.gz"
|
|
S = "${WORKDIR}/importlib_metadata-${PV}"
|
|
SRC_URI[md5sum] = "38f795ac13abc923acfd3da06263eb8f"
|
|
SRC_URI[sha256sum] = "0505dd08068cfec00f53a74a0ad927676d7757da81b7436a6eefe4c7cf75c545"
|
|
|
|
DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
|
|
RDEPENDS_${PN} += "${PYTHON_PN}-zipp ${PYTHON_PN}-pathlib2"
|
|
RDEPENDS_${PN}_append_class-target = " python3-misc"
|
|
RDEPENDS_${PN}_append_class-nativesdk = " python3-misc"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|