mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:39:02 +02:00

python 2 is gone and we don't need the abstraction now, drop the remaining usage of this variable. The definition in python3-dir.bbclass is left for now for other layers. (From OE-Core rev: b566b1e32c7993d1ab7795562f648e52ce186a70) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
609 B
PHP
28 lines
609 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 += " \
|
|
python3-pbr \
|
|
"
|
|
|
|
# Satisfy setup.py 'setup_requires'
|
|
DEPENDS += " \
|
|
python3-pbr-native \
|
|
"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
python3-doctest \
|
|
python3-extras \
|
|
python3-pbr \
|
|
python3-six \
|
|
"
|
|
|
|
BBCLASSEXTEND = "nativesdk"
|