python3-configargparse_1.7.bb 650 B

12345678910111213141516171819202122
  1. SUMMARY = "A drop-in replacement for argparse that allows options to also be set via config files and/or environment variables."
  2. HOMEPAGE = "https://github.com/bw2/ConfigArgParse"
  3. LICENSE = "MIT"
  4. LIC_FILES_CHKSUM = "file://LICENSE;md5=da746463714cc35999ed9a42339f2943"
  5. SRC_URI[sha256sum] = "e7067471884de5478c58a511e529f0f9bd1c66bfef1dea90935438d6c23306d1"
  6. PYPI_PACKAGE = "ConfigArgParse"
  7. UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
  8. inherit pypi setuptools3
  9. PACKAGECONFIG ?= "yaml"
  10. PACKAGECONFIG[yaml] = ",,,python3-pyyaml"
  11. RDEPENDS:${PN} += "\
  12. python3-core \
  13. python3-shell \
  14. python3-json \
  15. "
  16. BBCLASSEXTEND = "native nativesdk"