summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-xmltodict_0.13.0.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-xmltodict_0.13.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-xmltodict_0.13.0.bb30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-xmltodict_0.13.0.bb b/meta-python/recipes-devtools/python/python3-xmltodict_0.13.0.bb
new file mode 100644
index 0000000000..aadf8b7f44
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-xmltodict_0.13.0.bb
@@ -0,0 +1,30 @@
1SUMMARY = "Makes working with XML feel like you are working with JSON"
2AUTHOR = "Martin Blech"
3HOMEPAGE = "https://github.com/martinblech/xmltodict"
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=01441d50dc74476db58a41ac10cb9fa2"
6
7SRC_URI[sha256sum] = "341595a488e3e01a85a9d8911d8912fd922ede5fecc4dce437eb4b6c8d037e56"
8
9PYPI_PACKAGE = "xmltodict"
10
11inherit pypi setuptools3 ptest
12
13SRC_URI += " \
14 file://run-ptest \
15"
16
17RDEPENDS:${PN} += " \
18 ${PYTHON_PN}-core \
19 ${PYTHON_PN}-xml \
20 ${PYTHON_PN}-io \
21"
22
23RDEPENDS:${PN}-ptest += " \
24 ${PYTHON_PN}-pytest \
25"
26
27do_install_ptest() {
28 install -d ${D}${PTEST_PATH}/tests
29 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
30}