summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python
diff options
context:
space:
mode:
authorTrevor Gamblin <trevor.gamblin@windriver.com>2020-05-07 09:16:37 -0700
committerKhem Raj <raj.khem@gmail.com>2020-05-07 23:01:29 -0700
commit71bb82f31283398a6bc6e614444b8b73f2763591 (patch)
tree023ca3cb5fe4eca2d01fc6f301389ec1494b472a /meta-python/recipes-devtools/python
parent630d752a0c87bccb96db9f6646b32afed4e56540 (diff)
downloadmeta-openembedded-71bb82f31283398a6bc6e614444b8b73f2763591.tar.gz
python3-py: add python3-netclient to RDEPENDS
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>
Diffstat (limited to 'meta-python/recipes-devtools/python')
-rw-r--r--meta-python/recipes-devtools/python/python3-py_1.8.1.bb2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-py_1.8.1.bb b/meta-python/recipes-devtools/python/python3-py_1.8.1.bb
index 73aaf9e46a..ff66aeaa2b 100644
--- a/meta-python/recipes-devtools/python/python3-py_1.8.1.bb
+++ b/meta-python/recipes-devtools/python/python3-py_1.8.1.bb
@@ -11,3 +11,5 @@ DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
11inherit pypi setuptools3 11inherit pypi setuptools3
12 12
13BBCLASSEXTEND = "native nativesdk" 13BBCLASSEXTEND = "native nativesdk"
14
15RDEPENDS_${PN} += "${PYTHON_PN}-netclient"