summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2013-12-11 14:06:24 -0500
committerBruce Ashfield <bruce.ashfield@windriver.com>2013-12-11 14:06:24 -0500
commit1cc33875814296935b5db7cafb1e02a5cc4e13b8 (patch)
tree55744b0730557bb1dac11d242543efc3f5339417 /meta-openstack/recipes-devtools/python
parent0e5297c9a87c43fe6011c240fbbe754b053da138 (diff)
downloadmeta-cloud-services-1cc33875814296935b5db7cafb1e02a5cc4e13b8.tar.gz
python-mox: introduce Mock object framework
Many python-nose tests require mox and stubout, so we introduce the python-mox to meet the demand. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python')
-rw-r--r--meta-openstack/recipes-devtools/python/python-mox_0.5.3.bb7
1 files changed, 6 insertions, 1 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-mox_0.5.3.bb b/meta-openstack/recipes-devtools/python/python-mox_0.5.3.bb
index 88b3cac..2c665c6 100644
--- a/meta-openstack/recipes-devtools/python/python-mox_0.5.3.bb
+++ b/meta-openstack/recipes-devtools/python/python-mox_0.5.3.bb
@@ -1,5 +1,5 @@
1DESCRIPTION = "Mock object framework" 1DESCRIPTION = "Mock object framework"
2HOMEPAGE = "http://code.google.com/p/pymox/" 2HOMEPAGE = "https://github.com/dreamhost/cliff"
3SECTION = "devel/python" 3SECTION = "devel/python"
4LICENSE = "Apache-2.0" 4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://COPYING;md5=3b83ef96387f14655fc854ddc3c6bd57" 5LIC_FILES_CHKSUM = "file://COPYING;md5=3b83ef96387f14655fc854ddc3c6bd57"
@@ -15,3 +15,8 @@ SRC_URI[sha256sum] = "424ee725ee12652802b4e86571f816059b0d392401ceae70bf6487d656
15S = "${WORKDIR}/${SRCNAME}-${PV}" 15S = "${WORKDIR}/${SRCNAME}-${PV}"
16 16
17inherit distutils 17inherit distutils
18
19DISTUTILS_INSTALL_ARGS = "--root=${D} \
20 --prefix=${prefix} \
21 --install-lib=${PYTHON_SITEPACKAGES_DIR} \
22 --install-data=${datadir}"