diff options
Diffstat (limited to 'meta/recipes-devtools/python/python3-bcrypt_3.2.2.bb')
-rw-r--r-- | meta/recipes-devtools/python/python3-bcrypt_3.2.2.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-bcrypt_3.2.2.bb b/meta/recipes-devtools/python/python3-bcrypt_3.2.2.bb new file mode 100644 index 0000000000..54070e4b9c --- /dev/null +++ b/meta/recipes-devtools/python/python3-bcrypt_3.2.2.bb | |||
@@ -0,0 +1,30 @@ | |||
1 | DESCRIPTION = "Modern password hashing for your software and your servers." | ||
2 | LICENSE = "Apache-2.0" | ||
3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=8f7bb094c7232b058c7e9f2e431f389c" | ||
4 | HOMEPAGE = "https://pypi.org/project/bcrypt/" | ||
5 | |||
6 | DEPENDS += "${PYTHON_PN}-cffi-native" | ||
7 | |||
8 | SRC_URI[sha256sum] = "433c410c2177057705da2a9f2cd01dd157493b2a7ac14c8593a16b3dab6b6bfb" | ||
9 | |||
10 | inherit pypi python_setuptools_build_meta ptest | ||
11 | |||
12 | SRC_URI += " \ | ||
13 | file://run-ptest \ | ||
14 | " | ||
15 | |||
16 | RDEPENDS:${PN}-ptest += " \ | ||
17 | ${PYTHON_PN}-pytest \ | ||
18 | " | ||
19 | |||
20 | do_install_ptest() { | ||
21 | install -d ${D}${PTEST_PATH}/tests | ||
22 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
23 | } | ||
24 | |||
25 | RDEPENDS:${PN}:class-target += "\ | ||
26 | ${PYTHON_PN}-cffi \ | ||
27 | ${PYTHON_PN}-ctypes \ | ||
28 | ${PYTHON_PN}-shell \ | ||
29 | ${PYTHON_PN}-six \ | ||
30 | " | ||