1SUMMARY = "Python library implementing ASN.1 types."
2HOMEPAGE = "http://pyasn1.sourceforge.net/"
3LICENSE = "BSD-2-Clause"
4LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=190f79253908c986e6cacf380c3a5f6d"
5
6SRC_URI[sha256sum] = "97b7290ca68e62a832558ec3976f15cbf911bf5d7c7039d8b861c2a0ece69fde"
7
8RDEPENDS:${PN}:class-target += " \
9    ${PYTHON_PN}-codecs \
10    ${PYTHON_PN}-logging \
11    ${PYTHON_PN}-math \
12    ${PYTHON_PN}-shell \
13"
14
15BBCLASSEXTEND = "native nativesdk"
16
17inherit ptest
18
19SRC_URI += " \
20       file://run-ptest \
21           "
22
23RDEPENDS:${PN}-ptest += " \
24	${PYTHON_PN}-pytest \
25	${PYTHON_PN}-unittest-automake-output \
26"
27
28do_install_ptest() {
29	install -d ${D}${PTEST_PATH}/tests
30	cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
31}
32