d3921001a9
python-json-schema-validator does not need versiontools on the target, but only on the host, as it's listed in setup_requires in setup.py. This was not noticed so far because host Python interpreter is started with a PYTHONPATH that contains a directory with target Python packages, so versiontools was found there. But as we are about to fix PYTHONPATH to no longer include such a directory, python-json-schema-validator would fail due to versiontools being missed on the host. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 lines
683 B
Makefile
15 lines
683 B
Makefile
################################################################################
|
|
#
|
|
# python-json-schema-validator
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_JSON_SCHEMA_VALIDATOR_VERSION = 2.4.1
|
|
PYTHON_JSON_SCHEMA_VALIDATOR_SOURCE = json-schema-validator-$(PYTHON_JSON_SCHEMA_VALIDATOR_VERSION).tar.gz
|
|
PYTHON_JSON_SCHEMA_VALIDATOR_SITE = https://pypi.python.org/packages/70/46/ba39cb7efad1898cfc89bf3588b8612f24d128f1c25b761994f524a59cef
|
|
PYTHON_JSON_SCHEMA_VALIDATOR_LICENSE = LGPL-3.0
|
|
PYTHON_JSON_SCHEMA_VALIDATOR_SETUP_TYPE = setuptools
|
|
PYTHON_JSON_SCHEMA_VALIDATOR_DEPENDENCIES = host-python-versiontools
|
|
|
|
$(eval $(python-package))
|