summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python3-taskflow_git.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python3-taskflow_git.bb')
-rw-r--r--meta-openstack/recipes-devtools/python/python3-taskflow_git.bb43
1 files changed, 43 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python3-taskflow_git.bb b/meta-openstack/recipes-devtools/python/python3-taskflow_git.bb
new file mode 100644
index 0000000..a9c4c30
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python3-taskflow_git.bb
@@ -0,0 +1,43 @@
1DESCRIPTION = "A library to complete workflows/tasks in HA manner"
2HOMEPAGE = "https://wiki.openstack.org/wiki/TaskFlow"
3SECTION = "devel/python"
4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=4476c4be31402271e101d9a4a3430d52"
6
7SRC_URI = "\
8 git://git.openstack.org/openstack/taskflow.git;branch=stable/pike \
9 "
10
11PV="2.14.1+git${SRCPV}"
12SRCREV="ed867c4fd17e4102a133c313a13af37baccf14a4"
13S = "${WORKDIR}/git"
14
15inherit setuptools3
16
17DEPENDS += " \
18 python3-pip \
19 python3-pbr \
20 "
21
22# Satisfy setup.py 'setup_requires'
23DEPENDS += " \
24 python3-pbr-native \
25 "
26
27RDEPENDS_${PN} += " \
28 python3-pbr \
29 python3-six \
30 python3-futurist \
31 python3-fasteners \
32 python3-networkx \
33 python3-contextlib2 \
34 python3-stevedore \
35 python3-jsonschema \
36 python3-automaton \
37 python3-oslo.utils \
38 python3-oslo.serialization \
39 python3-tenacity \
40 python3-cachetools \
41 python3-debtcollector \
42 "
43