blob: 3f4c6e9fca23544385ec87b201f0b8e343b47d11 [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
Patrick Williams213cb262021-08-07 19:21:33 -050010RDEPENDS:${PN} += " \
Andrew Geissler1e34c2d2020-05-29 16:02:59 -050011 ${PYTHON_PN}-io \
12 ${PYTHON_PN}-math \
13"
14
Patrick Williams213cb262021-08-07 19:21:33 -050015RDEPENDS:${PN}-tests += " \
Andrew Geissler1e34c2d2020-05-29 16:02:59 -050016 ${PYTHON_PN}-unittest \
17"
18
19PACKAGES =+ "${PN}-tests"
20
Patrick Williams213cb262021-08-07 19:21:33 -050021FILES:${PN}-tests = " \
Andrew Geissler1e34c2d2020-05-29 16:02:59 -050022 ${PYTHON_SITEPACKAGES_DIR}/Crypto/SelfTest/ \
23 ${PYTHON_SITEPACKAGES_DIR}/Crypto/SelfTest/__pycache__/ \
24"
25
26BBCLASSEXTEND = "native nativesdk"