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 <peter@korsgaard.com>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit dab4285f85)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Peter Korsgaard 2018-03-09 20:17:00 +01:00
parent 2a18954aaa
commit 5d57f1405e

View File

@ -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.