summaryrefslogtreecommitdiffstats
path: root/meta-python
diff options
context:
space:
mode:
authoralperak <alperyasinak1@gmail.com>2024-03-06 19:54:41 +0300
committerKhem Raj <raj.khem@gmail.com>2024-03-08 10:07:24 -0800
commit3241575a20f0a628334f722c8a84ac6172fbc8b0 (patch)
treef8a4206a9f401a0d77da9c3c275fdf3801f20450 /meta-python
parent442b986b87a31f9d0bf0f1583b1846f664c08706 (diff)
downloadmeta-openembedded-3241575a20f0a628334f722c8a84ac6172fbc8b0.tar.gz
python3-invoke: add recipe
Invoke is a Python library for managing shell-oriented subprocesses and organizing executable Python code into CLI-invokable tasks. It draws inspiration from various sources (make/rake, Fabric 1.x, etc) to arrive at a powerful & clean feature set. Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r--meta-python/recipes-devtools/python/python3-invoke_2.2.0.bb18
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-invoke_2.2.0.bb b/meta-python/recipes-devtools/python/python3-invoke_2.2.0.bb
new file mode 100644
index 0000000000..3f2e6232d6
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-invoke_2.2.0.bb
@@ -0,0 +1,18 @@
1SUMMARY = "Pythonic task execution"
2HOMEPAGE = "https://www.pyinvoke.org/"
3LICENSE = "BSD-2-Clause"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=a8815068973f31b78c328dc067e297ab"
5
6SRC_URI[sha256sum] = "ee6cbb101af1a859c7fe84f2a264c059020b0cb7fe3535f9424300ab568f6bd5"
7
8inherit pypi setuptools3
9
10RDEPENDS:${PN} += " \
11 python3-fcntl \
12 python3-json \
13 python3-logging \
14 python3-pprint \
15 python3-terminal \
16 python3-unittest \
17 python3-unixadmin \
18"