python-twisted: add missing dependency on host-python-incremental

The recent change on PYTHONPATH for Python 2.x has revealed a missing
dependency in the python-twisted package. The incremental Python
module is listed in both setup_requires and install_requires, so we
must depend on both its target *and* host variants.

Fixes:

  http://autobuild.buildroot.net/results/386bf87abba550b5477d5e15e57981b8c3cef8d6/

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Thomas Petazzoni 2017-07-13 19:27:27 +02:00
parent 58e07385cf
commit 38aef10ee7

View File

@ -10,6 +10,6 @@ PYTHON_TWISTED_SITE = https://pypi.python.org/packages/d2/5d/ed5071740be94da6255
PYTHON_TWISTED_SETUP_TYPE = setuptools
PYTHON_TWISTED_LICENSE = MIT
PYTHON_TWISTED_LICENSE_FILES = LICENSE
PYTHON_TWISTED_DEPENDENCIES = python-incremental
PYTHON_TWISTED_DEPENDENCIES = python-incremental host-python-incremental
$(eval $(python-package))