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