diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2014-12-18 13:11:22 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-12-19 20:10:58 +0100 |
commit | 6b2c49e581330998b1f9a0a7181f38912b06288e (patch) | |
tree | ac5f597dfb0f53bf5fd7c41a3d35d427a28e8efd /meta-python | |
parent | 212dacb871ed7e83e9d94cd3d758d80c7a0e5924 (diff) | |
download | meta-openembedded-6b2c49e581330998b1f9a0a7181f38912b06288e.tar.gz |
python-mock: import from meta-openstack
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python-mock_1.0.1.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python-mock_1.0.1.bb b/meta-python/recipes-devtools/python/python-mock_1.0.1.bb new file mode 100644 index 0000000000..a23b5523f4 --- /dev/null +++ b/meta-python/recipes-devtools/python/python-mock_1.0.1.bb | |||
@@ -0,0 +1,26 @@ | |||
1 | # Imported from git://git.yoctoproject.org/meta-cloud-services | ||
2 | |||
3 | SUMMARY = "A Python Mocking and Patching Library for Testing" | ||
4 | HOMEPAGE = "https://pypi.python.org/pypi/mock" | ||
5 | SECTION = "devel/python" | ||
6 | LICENSE = "Apache-2.0" | ||
7 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=80e5ba73891255687dff3bee2b4cbb16" | ||
8 | |||
9 | SRCNAME = "mock" | ||
10 | |||
11 | SRC_URI = "https://pypi.python.org/packages/source/m/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | ||
12 | |||
13 | SRC_URI[md5sum] = "c3971991738caa55ec7c356bbc154ee2" | ||
14 | SRC_URI[sha256sum] = "b839dd2d9c117c701430c149956918a423a9863b48b09c90e30a6013e7d2f44f" | ||
15 | |||
16 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
17 | |||
18 | inherit setuptools | ||
19 | |||
20 | RDEPENDS_${PN} += " \ | ||
21 | python-prettytable \ | ||
22 | python-cmd2 \ | ||
23 | python-pyparsing \ | ||
24 | python-mccabe \ | ||
25 | python-pep8 \ | ||
26 | python-pyflakes" | ||