From bb1df369d58b2419d71464f1267743dbd36e85a3 Mon Sep 17 00:00:00 2001 From: George Sapkin Date: Tue, 26 May 2026 19:15:26 +0300 Subject: [PATCH] python-uvicorn: fix dependencies Add the missing python-hatchling/host dependency. Fixes: 072fde3b ("python-uvicorn: add new package") Signed-off-by: George Sapkin --- lang/python/python-uvicorn/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lang/python/python-uvicorn/Makefile b/lang/python/python-uvicorn/Makefile index 0d6c0c186b..a512406fed 100644 --- a/lang/python/python-uvicorn/Makefile +++ b/lang/python/python-uvicorn/Makefile @@ -14,9 +14,11 @@ PKG_LICENSE:=BSD-3-Clause PKG_LICENSE_FILES:=LICENSE.md HOST_BUILD_DEPENDS:= \ - python3/host \ python-click/host \ - python-h11/host + python-h11/host \ + python-hatchling/host + +PKG_BUILD_DEPENDS:=python-hatchling/host include ../pypi.mk include $(INCLUDE_DIR)/package.mk