python3-pynacl_1.5.0.bb 894 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. SUMMARY = "Python binding to the Networking and Cryptography (NaCl) library"
  2. DESCRIPTION = "Python binding to the Networking and Cryptography (NaCl) library"
  3. HOMEPAGE = "https://github.com/pyca/pynacl"
  4. LICENSE = "Apache-2.0"
  5. LIC_FILES_CHKSUM = "file://LICENSE;md5=8cc789b082b3d97e1ccc5261f8594d3f"
  6. SRC_URI[sha256sum] = "8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba"
  7. PYPI_PACKAGE = "PyNaCl"
  8. UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
  9. inherit pypi python_setuptools_build_meta
  10. DEPENDS += "\
  11. python3-cffi-native \
  12. libsodium \
  13. "
  14. do_compile:prepend() {
  15. export SODIUM_INSTALL=system
  16. }
  17. do_install:prepend() {
  18. export SODIUM_INSTALL=system
  19. }
  20. RDEPENDS:${PN} = "\
  21. python3-six \
  22. python3-cffi \
  23. libsodium \
  24. "
  25. RPROVIDES:${PN} = "python3-nacl"
  26. # in meta-virtualization layer
  27. #
  28. RCONFLICTS:${PN} = "python3-nacl"
  29. BBCLASSEXTEND = "native nativesdk"