mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Signed-off-by: Manuel Diener <manuel.diener@oss.othermo.de> Signed-off-by: Julien Olivain <ju.o@free.fr>
18 lines
876 B
Makefile
18 lines
876 B
Makefile
################################################################################
|
|
#
|
|
# python-pydantic-core
|
|
#
|
|
################################################################################
|
|
|
|
# python-pydantic pins an exact version of pydantic-core in pyproject.toml,
|
|
# make sure to sync pydantic-core to this version when updating pydantic
|
|
PYTHON_PYDANTIC_CORE_VERSION = 2.46.3
|
|
PYTHON_PYDANTIC_CORE_SOURCE_PYPI = pydantic_core-$(PYTHON_PYDANTIC_CORE_VERSION).tar.gz
|
|
PYTHON_PYDANTIC_CORE_SITE = $(PYTHON_PYDANTIC_CORE_SITE_PYPI)/$(PYTHON_PYDANTIC_CORE_SOURCE_PYPI)?buildroot-path=filename
|
|
PYTHON_PYDANTIC_CORE_SITE_PYPI = https://files.pythonhosted.org/packages/2a/ef/f7abb56c49382a246fd2ce9c799691e3c3e7175ec74b14d99e798bcddb1a
|
|
PYTHON_PYDANTIC_CORE_SETUP_TYPE = maturin
|
|
PYTHON_PYDANTIC_CORE_LICENSE = MIT
|
|
PYTHON_PYDANTIC_CORE_LICENSE_FILES = LICENSE
|
|
|
|
$(eval $(python-package))
|