summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-txdbus_1.1.2.bb
diff options
context:
space:
mode:
authorGyorgy Sarvari <skandigraun@gmail.com>2026-03-24 21:00:22 +0100
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-03-24 14:22:33 -0700
commit8694997b2cfc559f4affcc86f35d259c636a0c1f (patch)
tree5c292001e4307c697ec791e8daf4dd1da2622a05 /meta-python/recipes-devtools/python/python3-txdbus_1.1.2.bb
parenta2daf1bf094f57b05f0966f21894bdb872010b60 (diff)
downloadmeta-openembedded-8694997b2cfc559f4affcc86f35d259c636a0c1f.tar.gz
python3-txdbus: add missing RDEPENDS
This module depends on python3-six, otherwise it errors out: >>> from txdbus.interface import DBusInterface, Method, Signal Traceback (most recent call last): File "<python-input-1>", line 1, in <module> from txdbus.interface import DBusInterface, Method, Signal File "/usr/lib/python3.14/site-packages/txdbus/interface.py", line 8, in <module> import six ModuleNotFoundError: No module named 'six' Add the missing dependency. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-txdbus_1.1.2.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-txdbus_1.1.2.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python3-txdbus_1.1.2.bb b/meta-python/recipes-devtools/python/python3-txdbus_1.1.2.bb
index 01c069291c..ef6c248e80 100644
--- a/meta-python/recipes-devtools/python/python3-txdbus_1.1.2.bb
+++ b/meta-python/recipes-devtools/python/python3-txdbus_1.1.2.bb
@@ -8,4 +8,4 @@ SRC_URI[sha256sum] = "8375a5fb68a12054f0def91af800c821fb2232949337756ed975f88d8e
8 8
9inherit pypi setuptools3 9inherit pypi setuptools3
10 10
11RDEPENDS:${PN} += "python3-twisted-core" 11RDEPENDS:${PN} += "python3-twisted-core python3-six"