python-importlib-metadata: add missing runtime depends

>From setup.cfg:
...
 20 install_requires =
 21     zipp>=0.5
 22     pathlib2; python_version=='3.4.*' or python_version < '3'
 23     contextlib2; python_version < '3'
 24     configparser>=3.5; python_version < '3'
...

Add missing runtime depends while python version < '3'

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Hongxu Jia
2019-11-05 23:49:29 -08:00
committed by Khem Raj
parent ee4ee7645c
commit 51d1251f8b

View File

@@ -1,2 +1,6 @@
inherit pypi setuptools
require python-importlib-metadata.inc
RDEPENDS_${PN} += "python-configparser \
python-contextlib2 \
python-pathlib2 \
"