Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 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 | |
Patrick Williams | 2a25492 | 2023-08-11 09:48:11 -0500 | [diff] [blame] | 6 | SRC_URI[sha256sum] = "e7067471884de5478c58a511e529f0f9bd1c66bfef1dea90935438d6c23306d1" |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 7 | |
| 8 | PYPI_PACKAGE = "ConfigArgParse" |
| 9 | |
| 10 | inherit pypi setuptools3 |
| 11 | |
| 12 | PACKAGECONFIG ?= "yaml" |
Patrick Williams | 3965356 | 2024-03-01 08:54:02 -0600 | [diff] [blame] | 13 | PACKAGECONFIG[yaml] = ",,,python3-pyyaml" |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 14 | |
| 15 | RDEPENDS:${PN} += "\ |
Patrick Williams | 3965356 | 2024-03-01 08:54:02 -0600 | [diff] [blame] | 16 | python3-core \ |
| 17 | python3-shell \ |
| 18 | python3-json \ |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 19 | " |
| 20 | |
| 21 | BBCLASSEXTEND = "native nativesdk" |