From: Bartosz Golaszewski Date: Thu, 13 Apr 2023 09:15:53 +0000 (+0200) Subject: python3-pyproject-hooks: add missing run-time dependencies X-Git-Tag: uninative-3.10~282 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f886fe227fe91d0d1566e3ddb01856d7e67a8a2d;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git python3-pyproject-hooks: add missing run-time dependencies JSON module is required at run-time by pyproject-hooks. Signed-off-by: Bartosz Golaszewski Signed-off-by: Luca Ceresoli --- diff --git a/meta/recipes-devtools/python/python3-pyproject-hooks_1.0.0.bb b/meta/recipes-devtools/python/python3-pyproject-hooks_1.0.0.bb index 9aca5918ec1..e3893d51cb3 100644 --- a/meta/recipes-devtools/python/python3-pyproject-hooks_1.0.0.bb +++ b/meta/recipes-devtools/python/python3-pyproject-hooks_1.0.0.bb @@ -14,6 +14,8 @@ BBCLASSEXTEND = "native nativesdk" # Bootstrap the native build DEPENDS:remove:class-native = "python3-build-native" +RDEPENDS:${PN} += "python3-json" + do_compile:class-native () { python_flit_core_do_manual_build }