dstat: Add missing python-six runtime dependency

The tool depends on the six module, add it, otherwise the following
traceback happens when running it on the target:

Traceback (most recent call last):
  File "/usr/bin/dstat", line 32, in <module>
    import six
ModuleNotFoundError: No module named 'six'

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Khem Raj <raj.khem@gmail.com>
Cc: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
Marek Vasut 2021-09-20 17:12:26 +02:00 committed by Armin Kuster
parent b06724bc27
commit 5368c7c63d

View File

@ -21,4 +21,4 @@ do_install() {
oe_runmake 'DESTDIR=${D}' install
}
RDEPENDS_${PN} += "python3-core python3-misc python3-resource python3-shell python3-unixadmin"
RDEPENDS_${PN} += "python3-core python3-misc python3-resource python3-shell python3-six python3-unixadmin"