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[md5sum] = "ddb2bd078cef4f7e3021a578034ad941"
8SRC_URI[sha256sum] = "50d8c638ed7ecb88d90561beedbf720c9b4e851a9fa6c47ebd64e99d166d8a21"
9
10PYPI_PACKAGE = "xmltodict"
11
12inherit pypi setuptools3 ptest
13
14SRC_URI += " \
15	file://run-ptest \
16"
17
18RDEPENDS:${PN}-ptest += " \
19	${PYTHON_PN}-pytest \
20"
21
22do_install_ptest() {
23	install -d ${D}${PTEST_PATH}/tests
24	cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
25}
26