diff options
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.bb | 45 |
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 @@ | |||
1 | SUMMARY = "Provides the core functionality for pydantic validation and serialization." | ||
2 | DESCRIPTION = "This package provides the core functionality for \ | ||
3 | pydantic validation and serialization.\ | ||
4 | \ | ||
5 | Pydantic-core is currently around 17x faster than pydantic V1." | ||
6 | HOMEPAGE = "https://github.com/pydantic/pydantic-core" | ||
7 | |||
8 | LICENSE = "MIT" | ||
9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=ab599c188b4a314d2856b3a55030c75c" | ||
10 | |||
11 | SRC_URI += "file://0001-Set-rust-version-from-1.76-to-1.75-in-Cargo.toml.patch" | ||
12 | SRC_URI[sha256sum] = "ec3beeada09ff865c344ff3bc2f427f5e6c26401cc6113d77e372c3fdac73864" | ||
13 | |||
14 | DEPENDS = "python3-maturin-native python3-typing-extensions" | ||
15 | |||
16 | require ${BPN}-crates.inc | ||
17 | |||
18 | inherit pypi cargo-update-recipe-crates python_maturin | ||
19 | |||
20 | PYPI_PACKAGE = "pydantic_core" | ||
21 | |||
22 | RDEPENDS:${PN} += " \ | ||
23 | python3-compression \ | ||
24 | python3-typing-extensions \ | ||
25 | " | ||
26 | |||
27 | INSANE_SKIP:${PN} = "already-stripped" | ||
28 | INSANE_SKIP:${PN} += "buildpaths" | ||
29 | |||
30 | inherit ptest | ||
31 | SRC_URI += "file://run-ptest" | ||
32 | RDEPENDS:${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 | |||
42 | do_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 | } | ||