mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-09-06 05:40:29 +00:00
License-Update: - chore: preserve the historical copyright notices in COPYING Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
28 lines
763 B
BlitzBasic
28 lines
763 B
BlitzBasic
SUMMARY = "Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi compatible)"
|
|
HOMEPAGE = "https://github.com/jstasiak/python-zeroconf"
|
|
LICENSE = "LGPL-2.1-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=6ede793c8b5508eab1acfad7c0c4e335"
|
|
|
|
SRC_URI[sha256sum] = "ce6c548e665759b6150cef4db9ab9d7bdd89857e90c513abd6b7340bdd7dbd6a"
|
|
|
|
SRC_URI += "file://run-ptest"
|
|
|
|
inherit pypi python_poetry_core cython ptest
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-ifaddr (>=0.1.7) \
|
|
python3-async-timeout \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-pytest \
|
|
python3-pytest-asyncio \
|
|
python3-pytest-codspeed \
|
|
python3-unittest-automake-output \
|
|
"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
|
|
}
|