From 085fcb5390d4186f8db0f8e4d15ec182fff3d50b Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Wed, 23 Oct 2024 23:16:38 -0600 Subject: [PATCH] package/python-docker: use hatch setup type Use the new hatch setup type which automatically pulls in the host-python-hatchling dependency. Signed-off-by: James Hilliard Signed-off-by: Thomas Petazzoni --- package/python-docker/python-docker.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/python-docker/python-docker.mk b/package/python-docker/python-docker.mk index 55ba405f7c..582d9ee1d0 100644 --- a/package/python-docker/python-docker.mk +++ b/package/python-docker/python-docker.mk @@ -7,11 +7,11 @@ PYTHON_DOCKER_VERSION = 7.1.0 PYTHON_DOCKER_SOURCE = docker-$(PYTHON_DOCKER_VERSION).tar.gz PYTHON_DOCKER_SITE = https://files.pythonhosted.org/packages/91/9b/4a2ea29aeba62471211598dac5d96825bb49348fa07e906ea930394a83ce -PYTHON_DOCKER_SETUP_TYPE = pep517 +PYTHON_DOCKER_SETUP_TYPE = hatch PYTHON_DOCKER_LICENSE = Apache-2.0 PYTHON_DOCKER_LICENSE_FILES = LICENSE PYTHON_DOCKER_CPE_ID_VENDOR = docker PYTHON_DOCKER_CPE_ID_PRODUCT = docker-py -PYTHON_DOCKER_DEPENDENCIES = host-python-hatchling host-python-hatch-vcs +PYTHON_DOCKER_DEPENDENCIES = host-python-hatch-vcs $(eval $(python-package))