python3-scrypt_0.8.27.bb 614 B

12345678910111213141516171819
  1. DESCRIPTION = "Bindings for the scrypt key derivation function library"
  2. LICENSE = "BSD-2-Clause"
  3. LIC_FILES_CHKSUM = "file://LICENSE;md5=05b5ac2824a7ae7489193b0f6a6f2cd1"
  4. HOMEPAGE = "https://github.com/holgern/py-scrypt"
  5. SRC_URI += "file://0001-py-scrypt-remove-the-hard-coded-include-paths.patch"
  6. SRC_URI[sha256sum] = "a7b637848ed518c1ea2b31a9ecaaa3f49616598d8442de8706cf1f01fbabf0a7"
  7. inherit pypi ptest-python-pytest setuptools3 dos2unix
  8. RDEPENDS:${PN} += " \
  9. python3-ctypes \
  10. "
  11. do_install_ptest:append() {
  12. install -d ${D}${PTEST_PATH}/tests
  13. cp -rf ${S}/scrypt/tests/* ${D}${PTEST_PATH}/tests/
  14. }