mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Changelog: ============ * Remove various unused imports. * Fix build backend. This should prevent version from being set to 0.0.0 when building wheels. (From OE-Core rev: a6c46a0074999d9460f273886734258f0bf788d2) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
639 B
PHP
28 lines
639 B
PHP
SUMMARY = "Extensions to the Python standard library unit testing framework"
|
|
HOMEPAGE = "https://pypi.org/project/testtools/"
|
|
SECTION = "devel/python"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=e2c9d3e8ba7141c83bfef190e0b9379a"
|
|
|
|
inherit pypi
|
|
|
|
SRC_URI[sha256sum] = "df6de96010e29ee21f637a147eabf30d50b25e3841dd1d68f93ee89ce77e366c"
|
|
|
|
DEPENDS += " \
|
|
${PYTHON_PN}-pbr \
|
|
"
|
|
|
|
# Satisfy setup.py 'setup_requires'
|
|
DEPENDS += " \
|
|
${PYTHON_PN}-pbr-native \
|
|
"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
${PYTHON_PN}-doctest \
|
|
${PYTHON_PN}-extras \
|
|
${PYTHON_PN}-pbr \
|
|
${PYTHON_PN}-six \
|
|
"
|
|
|
|
BBCLASSEXTEND = "nativesdk"
|