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

Update build to use hatchling Add dependency for README generation Verify the license terms and update the checksum Note from upstream ======= Pydantic V2 is a ground-up rewrite that offers many new features, performance improvements, and some breaking changes compared to Pydantic V1. If you're using Pydantic V1 you may want to look at the pydantic V1.10 Documentation or, 1.10.X-fixes git branch. Pydantic V2 also ships with the latest version of Pydantic V1 built in so that you can incrementally upgrade your code base and projects: from pydantic import v1 as pydantic_v1. Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
24 lines
638 B
BlitzBasic
24 lines
638 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=09280955509d1c4ca14bae02f21d49a6"
|
|
|
|
inherit pypi python_hatchling
|
|
|
|
SRC_URI[sha256sum] = "b172505886028e4356868d617d2d1a776d7af1625d1313450fd51bdd19d9d61f"
|
|
|
|
DEPENDS += "python3-hatch-fancy-pypi-readme-native"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
python3-core \
|
|
python3-datetime \
|
|
python3-image \
|
|
python3-io \
|
|
python3-json \
|
|
python3-logging \
|
|
python3-netclient \
|
|
python3-numbers \
|
|
python3-profile \
|
|
python3-typing-extensions \
|
|
"
|