From: Peter Korsgaard Date: Fri, 9 Mar 2018 19:17:00 +0000 (+0100) Subject: python-jsonschema: needs python-functools32 when used with python 2.7 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dab4285f853889ab85fc130831f91187b4ad3242;p=buildroot.git python-jsonschema: needs python-functools32 when used with python 2.7 >From setup.py: extras_require = { .. ":python_version=='2.7'": ["functools32"], Signed-off-by: Peter Korsgaard Reviewed-by: Yegor Yefremov Signed-off-by: Peter Korsgaard --- diff --git a/package/python-jsonschema/Config.in b/package/python-jsonschema/Config.in index 7002653722..b547f4ae1a 100644 --- a/package/python-jsonschema/Config.in +++ b/package/python-jsonschema/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_PYTHON_JSONSCHEMA bool "python-jsonschema" + select BR2_PACKAGE_PYTHON_FUNCTOOLS32 if BR2_PACKAGE_PYTHON # runtime help An implementation of JSON Schema validation for Python.