mirror of
https://git.yoctoproject.org/poky
synced 2026-02-06 08:48:45 +01:00
Upstream release notes: v4.6.0 ====== * #326: Performance tests now rely on `pytest-perf <https://pypi.org/project/pytest-perf>`_. To disable these tests, which require network access and a git checkout, pass ``-p no:perf`` to pytest. (From OE-Core rev: 9a487fb10682243c6bbbb6a9918760cbeee06c19) Signed-off-by: Tim Orling <timothy.t.orling@intel.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
750 B
BlitzBasic
21 lines
750 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
|
|
|
|
PYPI_PACKAGE = "importlib_metadata"
|
|
UPSTREAM_CHECK_REGEX = "/importlib-metadata/(?P<pver>(\d+[\.\-_]*)+)/"
|
|
|
|
SRC_URI[sha256sum] = "4a5611fea3768d3d967c447ab4e93f567d95db92225b43b7b238dbfb855d70bb"
|
|
|
|
S = "${WORKDIR}/importlib_metadata-${PV}"
|
|
|
|
DEPENDS += "${PYTHON_PN}-setuptools-scm-native ${PYTHON_PN}-toml-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"
|