mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Changelog: ========== - Implement logic to support creating validators from non standard callables by using defaults to identify them and unwrapping functools.partial and functools.partialmethod when checking the signature - Fix mypy plugin for v1.1.1, and fix dataclass_transform decorator for pydantic dataclasses - Raise ValidationError, not ConfigError, when a discriminator value is unhashable Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
21 lines
603 B
BlitzBasic
21 lines
603 B
BlitzBasic
SUMMARY = "Data validation and settings management using Python type hinting"
|
|
HOMEPAGE = "https://github.com/samuelcolvin/pydantic"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=2c02ea30650b91528657db64baea1757"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
SRC_URI[sha256sum] = "cf95adb0d1671fc38d8c43dd921ad5814a735e7d9b4d9e437c088002863854fd"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
${PYTHON_PN}-typing-extensions \
|
|
${PYTHON_PN}-core \
|
|
${PYTHON_PN}-numbers \
|
|
${PYTHON_PN}-json \
|
|
${PYTHON_PN}-datetime \
|
|
${PYTHON_PN}-io \
|
|
${PYTHON_PN}-netclient \
|
|
${PYTHON_PN}-image \
|
|
${PYTHON_PN}-logging \
|
|
"
|