blob: 1198d5f740c76a1c89f8199075ba3f019b575a72 [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001SUMMARY = "Plugin and hook calling mechanisms for python"
2HOMEPAGE = "https://github.com/pytest-dev/pluggy"
3LICENSE = "MIT"
Brad Bishop0f291cc2019-09-01 15:16:57 -04004LIC_FILES_CHKSUM = "file://LICENSE;md5=1c8206d16fd5cc02fa9b0bb98955e5c2"
Brad Bishop316dfdd2018-06-25 12:45:53 -04005
Brad Bishope42b3e32020-01-15 22:08:42 -05006SRC_URI[md5sum] = "7f610e28b8b34487336b585a3dfb803d"
7SRC_URI[sha256sum] = "15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0"
Brad Bishop0f291cc2019-09-01 15:16:57 -04008
9DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
Brad Bishop2f973922019-11-11 07:58:48 -050010RDEPENDS_${PN} += "${PYTHON_PN}-importlib-metadata \
11 ${PYTHON_PN}-more-itertools \
12"
Brad Bishop316dfdd2018-06-25 12:45:53 -040013
Andrew Geissler82c905d2020-04-13 13:39:40 -050014inherit pypi ptest
15
16SRC_URI += " \
17 file://run-ptest \
18"
19
20RDEPENDS_${PN}-ptest += " \
21 ${PYTHON_PN}-pytest \
22"
23
24do_install_ptest() {
25 install -d ${D}${PTEST_PATH}/testing
26 cp -rf ${S}/testing/* ${D}${PTEST_PATH}/testing/
27}