mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Nose is installed as an Egg by default which we don't want, so change the inherit to setuptools from distutils to disable the eggification. (From OE-Core rev: 47a07c42f5f67dcf69f844531f7a527029e6280e) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
553 B
BlitzBasic
17 lines
553 B
BlitzBasic
DESCRIPTION = "nose extends the test loading and running features of unittest, \
|
|
making it easier to write, find and run tests."
|
|
SECTION = "devel/python"
|
|
LICENSE = "LGPLv2.1"
|
|
LIC_FILES_CHKSUM = "file://lgpl.txt;md5=a6f89e2100d9b6cdffcea4f398e37343"
|
|
|
|
SRC_URI = "http://pypi.python.org/packages/source/n/nose/nose-${PV}.tar.gz"
|
|
|
|
SRC_URI[md5sum] = "735e3f1ce8b07e70ee1b742a8a53585a"
|
|
SRC_URI[sha256sum] = "2171e9202d118d302d5db1decb52dd862b79e2a626ca19653a6914574a6ca7d9"
|
|
|
|
S = "${WORKDIR}/nose-${PV}"
|
|
|
|
inherit setuptools
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|