blob: 68b084eb04fa2062592d9473ddc6e9daea894dd0 [file] [log] [blame]
Andrew Geissler1e34c2d2020-05-29 16:02:59 -05001SUMMARY = "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=6dc0e2a13d2f25d6f123c434b761faba"
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"