python3-pycares_4.8.0.bb 639 B

12345678910111213141516171819202122
  1. SUMMARY = "Python interface for c-ares"
  2. DESCRIPTION = "\
  3. pycares is a Python module which provides an interface to c-ares. c-ares is \
  4. a C library that performs DNS requests and name resolutions asynchronously."
  5. HOMEPAGE = "https://github.com/saghul/pycares"
  6. LICENSE = "MIT"
  7. LIC_FILES_CHKSUM = "file://LICENSE;md5=b1538fcaea82ebf2313ed648b96c69b1"
  8. SRC_URI[sha256sum] = "2fc2ebfab960f654b3e3cf08a732486950da99393a657f8b44618ad3ed2d39c1"
  9. PYPI_PACKAGE = "pycares"
  10. inherit pypi python_setuptools_build_meta
  11. DEPENDS += "python3-cffi-native"
  12. RDEPENDS:${PN} += " \
  13. python3-cffi \
  14. python3-idna \
  15. "
  16. BBCLASSEXTEND = "native nativesdk"