summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-pluggy_1.3.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2023-08-31 10:45:52 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-09-02 18:29:29 +0100
commitf448ebc9cec93cf164e5c672e33fe15c8c084212 (patch)
tree7470711664b8ee111ff2f32275fcd720b5cb8d8d /meta/recipes-devtools/python/python3-pluggy_1.3.0.bb
parent058c638a5480251e46cae98b449d8220ec7f0b6d (diff)
downloadpoky-f448ebc9cec93cf164e5c672e33fe15c8c084212.tar.gz
python3-pluggy: upgrade 1.2.0 -> 1.3.0
Changelog: =========== #426: Python 3.7 is no longer supported. #428: Pluggy now exposes its typings to static type checkers. (From OE-Core rev: 5294490af327c80d80069070b0e68194e6ee23a3) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-pluggy_1.3.0.bb')
-rw-r--r--meta/recipes-devtools/python/python3-pluggy_1.3.0.bb29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-pluggy_1.3.0.bb b/meta/recipes-devtools/python/python3-pluggy_1.3.0.bb
new file mode 100644
index 0000000000..c149cbb0e2
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-pluggy_1.3.0.bb
@@ -0,0 +1,29 @@
1SUMMARY = "Plugin and hook calling mechanisms for python"
2HOMEPAGE = "https://github.com/pytest-dev/pluggy"
3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=1c8206d16fd5cc02fa9b0bb98955e5c2"
5
6SRC_URI[sha256sum] = "cf61ae8f126ac6f7c451172cf30e3e43d3ca77615509771b3a984a0730651e12"
7
8DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
9RDEPENDS:${PN} += "${PYTHON_PN}-importlib-metadata \
10 ${PYTHON_PN}-more-itertools \
11"
12
13inherit pypi ptest python_setuptools_build_meta
14
15SRC_URI += " \
16 file://run-ptest \
17"
18
19RDEPENDS:${PN}-ptest += " \
20 ${PYTHON_PN}-pytest \
21 ${PYTHON_PN}-unittest-automake-output \
22"
23
24do_install_ptest() {
25 install -d ${D}${PTEST_PATH}/testing
26 cp -rf ${S}/testing/* ${D}${PTEST_PATH}/testing/
27}
28
29BBCLASSEXTEND = "native nativesdk"