1SUMMARY = "Cryptographic library for Python"
2DESCRIPTION = "PyCryptodome is a self-contained Python package of low-level\
3 cryptographic primitives."
4HOMEPAGE = "http://www.pycryptodome.org"
5LICENSE = "PD & BSD-2-Clause"
6LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=accfa6aeaceb3ba96676edf18e78302c"
7
8inherit pypi
9
10RDEPENDS_${PN} += " \
11    ${PYTHON_PN}-io \
12    ${PYTHON_PN}-math \
13"
14
15RDEPENDS_${PN}-tests += " \
16    ${PYTHON_PN}-unittest \
17"
18
19PACKAGES =+ "${PN}-tests"
20
21FILES_${PN}-tests = " \
22    ${PYTHON_SITEPACKAGES_DIR}/Crypto/SelfTest/ \
23    ${PYTHON_SITEPACKAGES_DIR}/Crypto/SelfTest/__pycache__/ \
24"
25
26BBCLASSEXTEND = "native nativesdk"
27