diff options
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-configargparse_1.7.1.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-configargparse_1.7.1.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-configargparse_1.7.1.bb b/meta-python/recipes-devtools/python/python3-configargparse_1.7.1.bb new file mode 100644 index 0000000000..c056109c5a --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-configargparse_1.7.1.bb | |||
@@ -0,0 +1,22 @@ | |||
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 | |||
6 | SRC_URI[sha256sum] = "79c2ddae836a1e5914b71d58e4b9adbd9f7779d4e6351a637b7d2d9b6c46d3d9" | ||
7 | |||
8 | PYPI_PACKAGE = "configargparse" | ||
9 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" | ||
10 | |||
11 | inherit pypi setuptools3 | ||
12 | |||
13 | PACKAGECONFIG ?= "yaml" | ||
14 | PACKAGECONFIG[yaml] = ",,,python3-pyyaml" | ||
15 | |||
16 | RDEPENDS:${PN} += "\ | ||
17 | python3-core \ | ||
18 | python3-shell \ | ||
19 | python3-json \ | ||
20 | " | ||
21 | |||
22 | BBCLASSEXTEND = "native nativesdk" | ||