xref: /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python-pycryptodome.inc (revision 4882a59341e53eb6f0b4789bf948001014eff981)
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=29242a70410a4eeff488a28164e7ab93"
7
8inherit pypi
9
10PYPI_PACKAGE_EXT = "tar.gz"
11
12RDEPENDS:${PN} += " \
13    ${PYTHON_PN}-io \
14    ${PYTHON_PN}-math \
15"
16
17RDEPENDS:${PN}-tests += " \
18    ${PYTHON_PN}-unittest \
19"
20
21PACKAGES =+ "${PN}-tests"
22
23FILES:${PN}-tests = " \
24    ${PYTHON_SITEPACKAGES_DIR}/Crypto/SelfTest/ \
25    ${PYTHON_SITEPACKAGES_DIR}/Crypto/SelfTest/__pycache__/ \
26"
27
28BBCLASSEXTEND = "native nativesdk"
29