summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-virtualenv_1.11.4.bb
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2014-04-09 11:03:04 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2014-04-09 12:07:08 -0400
commitf836d97e0e2024e4f1c8a22f6c92f3309fbf6fc8 (patch)
tree0391ce454ab20a3ee74aa41733712282d7f565cc /meta-openstack/recipes-devtools/python/python-virtualenv_1.11.4.bb
parent6d229bc5925fbe3c0e3ecb16baf3be57782a7f47 (diff)
downloadmeta-cloud-services-f836d97e0e2024e4f1c8a22f6c92f3309fbf6fc8.tar.gz
tox: introduce the tox framework and dependencies
To enabled OpenStack unit testing: https://wiki.openstack.org/wiki/Testing#Unit_Testing_with_Tox We introduce tox and its depedencies. Adding it to the tempest RDEPENDS ensures that it is installed along with the rest of the test frameworks. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-virtualenv_1.11.4.bb')
-rw-r--r--meta-openstack/recipes-devtools/python/python-virtualenv_1.11.4.bb25
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-virtualenv_1.11.4.bb b/meta-openstack/recipes-devtools/python/python-virtualenv_1.11.4.bb
new file mode 100644
index 0000000..c2fb657
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-virtualenv_1.11.4.bb
@@ -0,0 +1,25 @@
1DESCRIPTION = "Virtual Python Environment builder"
2HOMEPAGE = "https://pypi.python.org/pypi/virtualenv"
3SECTION = "devel/python"
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=53df9f8889d6a5fba83f425abe3b1568"
6
7PR = "r0"
8
9SRCNAME = "virtualenv"
10SRC_URI = "http://pypi.python.org/packages/source/v/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
11
12SRC_URI[md5sum] = "9accc2d3f0ec1da479ce2c3d1fdff06e"
13SRC_URI[sha256sum] = "cf3d958f28eb7470bd04262ef397580a2e57407f2ee2c88e9b2892218eb0465a"
14
15S = "${WORKDIR}/${SRCNAME}-${PV}"
16
17inherit setuptools
18
19DEPENDS += " \
20 python-pip \
21 "
22
23RDEPENDS_${PN} += " \
24 python-dateutil \
25 "