blob: 48481bcf9a976f87349e0ba2ff6bd3dad55d02f3 [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"
Andrew Geissler90fd73c2021-03-05 15:25:55 -06006LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=accfa6aeaceb3ba96676edf18e78302c"
Andrew Geissler1e34c2d2020-05-29 16:02:59 -05007
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"