mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-23 10:30:35 -09:00
License hash changed due to formatting changes:
755ceae1f6
Migrate from setuptools to poetry build backend.
Add new host-python-cython build dependency.
Add host-python-setuptools build dependency.
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
19 lines
662 B
Makefile
19 lines
662 B
Makefile
################################################################################
|
|
#
|
|
# python-zeroconf
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_ZEROCONF_VERSION = 0.123.0
|
|
PYTHON_ZEROCONF_SOURCE = zeroconf-$(PYTHON_ZEROCONF_VERSION).tar.gz
|
|
PYTHON_ZEROCONF_SITE = https://files.pythonhosted.org/packages/db/47/85eafb277f6ef78e1a1895cc72f0035dfa6a5e51396134eb9ce21564c72f
|
|
PYTHON_ZEROCONF_SETUP_TYPE = pep517
|
|
PYTHON_ZEROCONF_LICENSE = LGPL-2.1+
|
|
PYTHON_ZEROCONF_LICENSE_FILES = COPYING
|
|
PYTHON_ZEROCONF_DEPENDENCIES = \
|
|
host-python-cython \
|
|
host-python-poetry-core \
|
|
host-python-setuptools
|
|
|
|
$(eval $(python-package))
|