blob: 6233527dc0b700312507d049b8bf2074f5270820 [file] [log] [blame]
Andrew Geissler9aee5002022-03-30 16:27:02 +00001DESCRIPTION = "DNS toolkit for Python"
2HOMEPAGE = "http://www.dnspython.org/"
3LICENSE = "ISC"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=5af50906b5929837f667dfe31052bd34"
5
Patrick Williams2a254922023-08-11 09:48:11 -05006SRC_URI[sha256sum] = "c33971c79af5be968bb897e95c2448e11a645ee84d93b265ce0b7aabe5dfdca8"
Andrew Geissler9aee5002022-03-30 16:27:02 +00007
8inherit pypi python_poetry_core ptest
9
10SRC_URI += " \
11 file://run-ptest \
12"
13
14RDEPENDS:${PN}-ptest += " \
15 ${PYTHON_PN}-pytest \
16"
17
18do_install_ptest() {
19 install -d ${D}${PTEST_PATH}/tests
20 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
21}
22
23DEPENDS += "\
24 ${PYTHON_PN}-wheel-native \
25 ${PYTHON_PN}-setuptools-scm-native \
26"
27
28RDEPENDS:${PN} += " \
29 ${PYTHON_PN}-crypt \
30 ${PYTHON_PN}-io \
31 ${PYTHON_PN}-math \
32 ${PYTHON_PN}-netclient \
33 ${PYTHON_PN}-numbers \
34 ${PYTHON_PN}-threading \
35"