package/python-pydantic: bump to version 2.5.2

Add new python-annotated-types runtime dependency.

Add new python-pydantic-core runtime dependency.

Migrate build backend from setuptools to hatchling.

License hash changed due to adding contributors:
7bc9c6525a

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
James Hilliard 2023-11-25 01:10:52 -07:00 committed by Yann E. MORIN
parent 92fcdbd3e2
commit 05a259ed41
3 changed files with 13 additions and 7 deletions

View File

@ -1,8 +1,11 @@
config BR2_PACKAGE_PYTHON_PYDANTIC
bool "python-pydantic"
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS # python-pydantic-core
select BR2_PACKAGE_PYTHON_ANNOTATED_TYPES # runtime
select BR2_PACKAGE_PYTHON_PYDANTIC_CORE # runtime
select BR2_PACKAGE_PYTHON_TYPING_EXTENSIONS # runtime
help
Data validation and settings management using python 3.6
type hinting.
https://github.com/samuelcolvin/pydantic
https://github.com/pydantic/pydantic

View File

@ -1,5 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/pydantic/json
md5 f0e286c32f40ec45aba9603742739cd6 pydantic-1.10.8.tar.gz
sha256 1410275520dfa70effadf4c21811d755e7ef9bb1f1d077a21958153a92c8d9ca pydantic-1.10.8.tar.gz
md5 348281a5a27eb5253c7a83927aae64e1 pydantic-2.5.2.tar.gz
sha256 ff177ba64c6faf73d7afa2e8cad38fd456c0dbe01c9954e71038001cd15a6edd pydantic-2.5.2.tar.gz
# Locally computed sha256 checksums
sha256 9e3946690ac88b6b73e8f001a0586af13568be8852fd514e4393f39761764387 LICENSE
sha256 a9e186f3ca16b5eef84318e7a701721351a00cb7b8ae3a4394b67b49e3529ef3 LICENSE

View File

@ -4,11 +4,14 @@
#
################################################################################
PYTHON_PYDANTIC_VERSION = 1.10.8
PYTHON_PYDANTIC_VERSION = 2.5.2
PYTHON_PYDANTIC_SOURCE = pydantic-$(PYTHON_PYDANTIC_VERSION).tar.gz
PYTHON_PYDANTIC_SITE = https://files.pythonhosted.org/packages/23/65/2aa13873e9e0084ecaec00fbe6c6096b65e1ab99ba66bdbf7e4e7c4cc915
PYTHON_PYDANTIC_SETUP_TYPE = setuptools
PYTHON_PYDANTIC_SITE = https://files.pythonhosted.org/packages/b7/41/3c8108f79fb7da2d2b17f35744232af4ffcd9e764ebe1e3fd4b26669b325
PYTHON_PYDANTIC_SETUP_TYPE = pep517
PYTHON_PYDANTIC_LICENSE = MIT
PYTHON_PYDANTIC_LICENSE_FILES = LICENSE
PYTHON_PYDANTIC_DEPENDENCIES = \
host-python-hatchling \
host-python-hatch-fancy-pypi-readme
$(eval $(python-package))