mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

python3-py requires the uuid.py module, which is contained in python3-netclient. Without it: root@qemux86-64:~# python3 >>> import py._path.local Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib64/python3.8/site-packages/py/_path/local.py", line 7, in <module> import sys, os, atexit, io, uuid ModuleNotFoundError: No module named 'uuid' Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
16 lines
507 B
BlitzBasic
16 lines
507 B
BlitzBasic
SUMMARY = "Library with cross-python path, ini-parsing, io, code, log facilities"
|
|
HOMEPAGE = "http://py.readthedocs.io/"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=a6bb0320b04a0a503f12f69fea479de9"
|
|
|
|
SRC_URI[md5sum] = "42c67de84b07ac9cc867b8b70843a45b"
|
|
SRC_URI[sha256sum] = "5e27081401262157467ad6e7f851b7aa402c5852dbcb3dae06768434de5752aa"
|
|
|
|
DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
RDEPENDS_${PN} += "${PYTHON_PN}-netclient"
|