python-pydantic-core.mk 942 B

123456789101112131415161718
  1. ################################################################################
  2. #
  3. # python-pydantic-core
  4. #
  5. ################################################################################
  6. # python-pydantic pins an exact version of pydantic-core in pyproject.toml,
  7. # make sure to sync pydantic-core to this version when updating pydantic
  8. PYTHON_PYDANTIC_CORE_VERSION = 2.33.2
  9. PYTHON_PYDANTIC_CORE_SOURCE_PYPI = pydantic_core-$(PYTHON_PYDANTIC_CORE_VERSION).tar.gz
  10. PYTHON_PYDANTIC_CORE_SITE = $(PYTHON_PYDANTIC_CORE_SITE_PYPI)/$(PYTHON_PYDANTIC_CORE_SOURCE_PYPI)?buildroot-path=filename
  11. PYTHON_PYDANTIC_CORE_SITE_PYPI = https://files.pythonhosted.org/packages/ad/88/5f2260bdfae97aabf98f1778d43f69574390ad787afb646292a638c923d4
  12. PYTHON_PYDANTIC_CORE_SETUP_TYPE = maturin
  13. PYTHON_PYDANTIC_CORE_LICENSE = MIT
  14. PYTHON_PYDANTIC_CORE_LICENSE_FILES = LICENSE
  15. PYTHON_PYDANTIC_CORE_DEPENDENCIES = host-python-typing-extensions
  16. $(eval $(python-package))