Issues with pip3 and 2 packages with new Ecosystem 4.0
Hello all, I have stm32mp157dk2 board and I was using zeep package in it (as custom layer with the help of recipe from ST community). Lately got a need for aiortc package but recieved a recipe from community but the employee has tested it new ecosystem, so it didnt work in older one. So as soon they released new ecosystem, I built the distribution package and added both zeep and aiortc to it.
But after flashing the board, pip3 commands are not working, shows "NoModuleFoundError" for "colorsys" whenever I try and the zeep package shows same error for "attr" and aiortc (compiled successfully but) shows "NoModuleFoundError" for "av" . As pip3 is not working I'm unable to get these missing modules. How to fix this issue?
Also I'm putting those recipes below, so any suggestions on changes in these recipes to make them work in new ecosystem is appreciated :)
DESCRIPTION = "aiortc is a library for Web Real-Time Communication (WebRTC) and \
Object Real-Time Communication (ORTC) in Python."
HOMEPAGE = "https://github.com/aiortc/aiortc"
SECTION = "devel/python"
AUTHOR = "Jeremy Laine"
LICENSE = "BSD"
LIC_FILES_CHKSUM = "file://LICENSE;md5=907b5e856b2e6bcd8a3cc8d338a6166f"
SRC_URI[md5sum] = "3f43e88416113141b0196bdf6c37b444"
SRC_URI[sha256sum] = "15608d7fcf09502d1b8c19b8a63bc22966090ee0761ac9a755e9f747f46d67ab"
PYPI_PACKAGE = "aiortc"
DEPENDS += " \
${PYTHON_PN}-setuptools-scm-native \
${PYTHON_PN}-toml-native \
"
inherit pypi python_setuptools_build_meta
RDEPENDS:${PN} += " \
ffmpeg \
libopus \
libsrtp \
libvpx \
"
BBCLASSEXTEND += "native nativesdk"DESCRIPTION = "A modern/fast Python SOAP client based on lxml / requests."
HOMEPAGE = "https://docs.python-zeep.org/en/master/"
SECTION = "devel/python"
AUTHOR = "Michael van Tellingen"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=8c4f352744f3f0b50054eef4215eeb95"
SRC_URI[md5sum] = "f689cc06cefb6ee95b2254b80d0ebd30"
SRC_URI[sha256sum] = "5867f2eadd6b028d9751f4155af590d3aaf9280e3a0ed5e15a53343921c956e5"
PYPI_PACKAGE = "zeep"
inherit pypi setuptools3
BBCLASSEXTEND += "native nativesdk"
RDEPENDS_${PN} += " ${PYTHON_PN}-lxml \
${PYTHON_PN}-attrs \
${PYTHON_PN}-requests \
${PYTHON_PN}-requests-file \
${PYTHON_PN}-cached-property \
${PYTHON_PN}-isodate \
${PYTHON_PN}-pytz \
"