summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python3-falcon_2.0.0.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python3-falcon_2.0.0.bb')
-rw-r--r--meta-openstack/recipes-devtools/python/python3-falcon_2.0.0.bb26
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python3-falcon_2.0.0.bb b/meta-openstack/recipes-devtools/python/python3-falcon_2.0.0.bb
new file mode 100644
index 0000000..648a7dd
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python3-falcon_2.0.0.bb
@@ -0,0 +1,26 @@
1DESCRIPTION = "An unladen web framework for building APIs and app backends."
2HOMEPAGE = "http://falconframework.org"
3SECTION = "devel/python"
4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://README.rst;md5=a0c7260e38287caff6c266d1f287e962"
6
7SRC_URI[md5sum] = "77c52c144dd284e6259d257c6f008072"
8SRC_URI[sha256sum] = "eea593cf466b9c126ce667f6d30503624ef24459f118c75594a69353b6c3d5fc"
9
10inherit setuptools3 pypi
11
12# conflicting file prevention
13do_install_append() {
14 rm -f ${D}${libdir}/python*/site-packages/tests/*
15}
16
17DEPENDS += " \
18 python3-pip \
19 "
20
21RDEPENDS_${PN} += " \
22 python3-six \
23 python3-json \
24 python3-xml \
25 python3-netserver \
26 "