diff options
author | Ross Burton <ross.burton@intel.com> | 2014-01-14 15:19:28 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-14 17:03:56 +0000 |
commit | 7282635343e0ccf7a82ffdb35905bdc2db6093d3 (patch) | |
tree | 6cd0d5d7b963fe99d4b307a1d36ebfa04a1917a8 /meta | |
parent | d410a121dac784ec0069aafa88b78229ecb36917 (diff) | |
download | poky-7282635343e0ccf7a82ffdb35905bdc2db6093d3.tar.gz |
python-nose: add (from meta-oe)
python-nose is a build dependecy for python-numpy, needed for Piglit. This
recipe is taken directly from meta-oe.
(From OE-Core rev: 6b0c3e9955292d2ea13c6871c686824cd04150f1)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/python/python-nose_1.2.1.bb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python-nose_1.2.1.bb b/meta/recipes-devtools/python/python-nose_1.2.1.bb new file mode 100644 index 0000000000..083d0521df --- /dev/null +++ b/meta/recipes-devtools/python/python-nose_1.2.1.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | DESCRIPTION = "nose extends the test loading and running features of unittest, \ | ||
2 | making it easier to write, find and run tests." | ||
3 | SECTION = "devel/python" | ||
4 | LICENSE = "LGPLv2.1" | ||
5 | LIC_FILES_CHKSUM = "file://lgpl.txt;md5=a6f89e2100d9b6cdffcea4f398e37343" | ||
6 | |||
7 | SRC_URI = "http://pypi.python.org/packages/source/n/nose/nose-${PV}.tar.gz" | ||
8 | |||
9 | SRC_URI[md5sum] = "735e3f1ce8b07e70ee1b742a8a53585a" | ||
10 | SRC_URI[sha256sum] = "2171e9202d118d302d5db1decb52dd862b79e2a626ca19653a6914574a6ca7d9" | ||
11 | |||
12 | S = "${WORKDIR}/nose-${PV}" | ||
13 | |||
14 | inherit distutils | ||