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