Aiomqtt uses Poetry. The only difference between poetry and generic pep517 is the host-python-poetry-core dependency, and this got pulled in as an indirect dependency of host-python-poetry-dynamic-versioning so far. So the build was not actually failing, but it's better to be correct. Signed-off-by: Fiona Klute (WIWA) <fiona.klute@gmx.de> Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
16 lines
616 B
Makefile
16 lines
616 B
Makefile
################################################################################
|
|
#
|
|
# python-aiomqtt
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_AIOMQTT_VERSION = 2.3.0
|
|
PYTHON_AIOMQTT_SOURCE = aiomqtt-$(PYTHON_AIOMQTT_VERSION).tar.gz
|
|
PYTHON_AIOMQTT_SITE = https://files.pythonhosted.org/packages/db/c9/168e78bd35b21d9bdbb26178db33a8f265e4a69bb4193e72434e7cb3d1cd
|
|
PYTHON_AIOMQTT_SETUP_TYPE = poetry
|
|
PYTHON_AIOMQTT_LICENSE = BSD-3-Clause
|
|
PYTHON_AIOMQTT_LICENSE_FILES = LICENSE
|
|
PYTHON_AIOMQTT_DEPENDENCIES = host-python-poetry-dynamic-versioning
|
|
|
|
$(eval $(python-package))
|