mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-02 05:33:57 -09:00
Add python-typing-inspection runtime dependency. This was added to
fastapi as a dependency in 0.128.2[1] but in practice this doesn't break
anything as fastapi depends on pydantic which already has a dependency
on typing-inspection.
Release Notes:
* https://fastapi.tiangolo.com/release-notes/#01362-2026-05-23
* https://fastapi.tiangolo.com/release-notes/#01363-2026-05-23
[1] 97145588f5
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
[Marcus: clarify when the dependency was added to fastapi, add release
notes]
Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
18 lines
675 B
Makefile
18 lines
675 B
Makefile
################################################################################
|
|
#
|
|
# python-fastapi
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_FASTAPI_VERSION = 0.136.3
|
|
PYTHON_FASTAPI_SOURCE = fastapi-$(PYTHON_FASTAPI_VERSION).tar.gz
|
|
PYTHON_FASTAPI_SITE = https://files.pythonhosted.org/packages/81/2d/ff8d91d7b564d464629a0fd50a4489c97fcb836ac230bf3a7269232a9b1f
|
|
PYTHON_FASTAPI_SETUP_TYPE = pep517
|
|
PYTHON_FASTAPI_LICENSE = MIT
|
|
PYTHON_FASTAPI_LICENSE_FILES = LICENSE
|
|
PYTHON_FASTAPI_CPE_ID_VENDOR = tiangolo
|
|
PYTHON_FASTAPI_CPE_ID_PRODUCT = fastapi
|
|
PYTHON_FASTAPI_DEPENDENCIES = host-python-pdm-backend
|
|
|
|
$(eval $(python-package))
|