diff options
author | Vesa Jääskeläinen <vesa.jaaskelainen@vaisala.com> | 2021-08-28 18:44:30 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-08-30 08:10:12 -0700 |
commit | 5301d617553df9fa8a36eaff88c7c30c677acdf5 (patch) | |
tree | 1ed01c6d5845b3028afcc0c55476252fadb2ec05 /meta-python/recipes-devtools/python | |
parent | 78922a3621fd63b064e2fa14bae70588ad4de0c1 (diff) | |
download | meta-openembedded-5301d617553df9fa8a36eaff88c7c30c677acdf5.tar.gz |
python3-pkcs11: Add recipe for version 0.7.0
"A high level, “more Pythonic” interface to the PKCS#11 (Cryptoki)
standard to support HSM and Smartcard devices in Python."
Signed-off-by: Vesa Jääskeläinen <vesa.jaaskelainen@vaisala.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-pkcs11_0.7.0.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pkcs11_0.7.0.bb b/meta-python/recipes-devtools/python/python3-pkcs11_0.7.0.bb new file mode 100644 index 0000000000..816b728dc0 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pkcs11_0.7.0.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "PKCS#11 (Cryptoki) support for Python" | ||
2 | DESCRIPTION = "A high level, “more Pythonic” interface to the PKCS#11 (Cryptoki) standard to support HSM and Smartcard devices in Python." | ||
3 | HOMEPAGE = "https://pypi.org/project/python-pkcs11/" | ||
4 | SECTION = "devel/python" | ||
5 | LICENSE = "MIT" | ||
6 | LIC_FILES_CHKSUM = "file://README.rst;beginline=337;endline=358;md5=f68bda54505b4002e6ec86e08125ef79" | ||
7 | |||
8 | SRC_URI[sha256sum] = "9737e0c24cabb8bc9d48bf8c57c3df2a70f8cdd96b70c50290803286f9e46bf7" | ||
9 | |||
10 | PYPI_PACKAGE = "python-pkcs11" | ||
11 | |||
12 | inherit pypi setuptools3 | ||
13 | |||
14 | BBCLASSEXTEND = "native" | ||
15 | |||
16 | DEPENDS += " \ | ||
17 | python3-cython-native \ | ||
18 | python3-setuptools-scm-native \ | ||
19 | python3 \ | ||
20 | " | ||
21 | |||
22 | RDEPENDS:${PN} += " \ | ||
23 | python3-asn1crypto \ | ||
24 | python3-cached-property \ | ||
25 | " | ||