mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-15 14:56:43 +01:00
Moved the recipe from meta-homeassistant to meta-openembedded. @see: https://github.com/meta-homeassistant/meta-homeassistant/pull/177#issuecomment-3510619876 - version bump from 0.35.0 to 0.38.0 (current latest release) - added ptests - patch to skip 5 tests that did not pass the run - added tests to PTESTS_SLOW_META_PYTHON Signed-off-by: Jan Vermaete <jan.vermaete@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
31 lines
792 B
BlitzBasic
31 lines
792 B
BlitzBasic
SUMMARY = "The lightning-fast ASGI server."
|
|
HOMEPAGE = "https://github.com/encode/uvicorn"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.md;md5=5c778842f66a649636561c423c0eec2e"
|
|
RECIPE_MAINTAINER = "Tom Geelen <t.f.g.geelen@gmail.com>"
|
|
|
|
SRC_URI[sha256sum] = "fd97093bdd120a2609fc0d3afe931d4d4ad688b6e75f0f929fde1bc36fe0e91d"
|
|
|
|
SRC_URI += "file://0001-ptest-disable-failing-tests.patch"
|
|
|
|
inherit pypi python_hatchling ptest-python-pytest
|
|
|
|
PYPI_PACKAGE = "uvicorn"
|
|
|
|
RDEPENDS:${PN} = "\
|
|
python3-click \
|
|
python3-h11 (>=0.8) \
|
|
python3-httptools \
|
|
python3-multiprocessing \
|
|
python3-python-dotenv \
|
|
python3-websockets \
|
|
python3-wsproto \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += "\
|
|
python3-a2wsgi \
|
|
python3-httpx \
|
|
python3-pytest-mock \
|
|
python3-pyyaml \
|
|
"
|