summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pydantic-core_2.18.4.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pydantic-core_2.18.4.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-pydantic-core_2.18.4.bb45
1 files changed, 45 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pydantic-core_2.18.4.bb b/meta-python/recipes-devtools/python/python3-pydantic-core_2.18.4.bb
new file mode 100644
index 0000000000..eb55991995
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pydantic-core_2.18.4.bb
@@ -0,0 +1,45 @@
1SUMMARY = "Provides the core functionality for pydantic validation and serialization."
2DESCRIPTION = "This package provides the core functionality for \
3pydantic validation and serialization.\
4\
5Pydantic-core is currently around 17x faster than pydantic V1."
6HOMEPAGE = "https://github.com/pydantic/pydantic-core"
7
8LICENSE = "MIT"
9LIC_FILES_CHKSUM = "file://LICENSE;md5=ab599c188b4a314d2856b3a55030c75c"
10
11SRC_URI += "file://0001-Set-rust-version-from-1.76-to-1.75-in-Cargo.toml.patch"
12SRC_URI[sha256sum] = "ec3beeada09ff865c344ff3bc2f427f5e6c26401cc6113d77e372c3fdac73864"
13
14DEPENDS = "python3-maturin-native python3-typing-extensions"
15
16require ${BPN}-crates.inc
17
18inherit pypi cargo-update-recipe-crates python_maturin
19
20PYPI_PACKAGE = "pydantic_core"
21
22RDEPENDS:${PN} += " \
23 python3-compression \
24 python3-typing-extensions \
25"
26
27INSANE_SKIP:${PN} = "already-stripped"
28INSANE_SKIP:${PN} += "buildpaths"
29
30inherit ptest
31SRC_URI += "file://run-ptest"
32RDEPENDS:${PN}-ptest += "\
33 python3-dirty-equals \
34 python3-hypothesis \
35 python3-pytest \
36 python3-pytest-mock \
37 python3-pytest-timeout \
38 python3-pytest-benchmark \
39 python3-unittest-automake-output \
40"
41
42do_install_ptest() {
43 cp -rf ${S}/tests/ ${D}${PTEST_PATH}/
44 sed -i -e "/--automake/ s/$/ -k 'not test_model_class_root_validator_wrap and not test_model_class_root_validator_before and not test_model_class_root_validator_after'/" ${D}${PTEST_PATH}/run-ptest
45}