summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-fastapi_0.133.1.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2026-02-27 17:43:39 +0200
committerKhem Raj <raj.khem@gmail.com>2026-03-02 19:25:58 -0800
commita4b7568e50196995154ae8df6522e3b832a78c20 (patch)
tree65248b516c319dc7d0aaee411feadb76d507fcc9 /meta-python/recipes-devtools/python/python3-fastapi_0.133.1.bb
parentf6eb6e8680e5644a61c6ffa26545f5e245f0f74a (diff)
downloadmeta-openembedded-a4b7568e50196995154ae8df6522e3b832a78c20.tar.gz
python3-fastapi: Upgrade 0.128.0 -> 0.133.1
Upgrade to release 0.133.1: - Add FastAPI Agent Skill. - Fix all tests are skipped on Windows. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-fastapi_0.133.1.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-fastapi_0.133.1.bb38
1 files changed, 38 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-fastapi_0.133.1.bb b/meta-python/recipes-devtools/python/python3-fastapi_0.133.1.bb
new file mode 100644
index 0000000000..88d8350b79
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-fastapi_0.133.1.bb
@@ -0,0 +1,38 @@
1DESCRIPTION = "FastAPI framework, high performance, easy to learn, fast to code, ready for production"
2HOMEPAGE = "https://fastapi.tiangolo.com/"
3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=95792ff3fe8e11aa49ceb247e66e4810"
5
6SRC_URI[sha256sum] = "ed152a45912f102592976fde6cbce7dae1a8a1053da94202e51dd35d184fadd6"
7
8SRC_URI += "file://run-ptest"
9
10CVE_PRODUCT = "tiangolo:fastapi"
11
12inherit pypi python_pdm ptest-python-pytest
13
14PACKAGECONFIG ?= ""
15# swagger-ui is in meta-webserver that meta-python does not depend upon
16# Users can still enable it in their distros explicitly but its disabled
17# by default
18PACKAGECONFIG[swagger-ui] = ",,,swagger-ui"
19
20RDEPENDS:${PN} += "\
21 python3-annotated-doc \
22 python3-fastapi-cli \
23 python3-json \
24 python3-pydantic \
25 python3-starlette \
26 python3-typing-extensions \
27"
28
29RDEPENDS:${PN}-ptest += "\
30 python3-coverage \
31 python3-httpx \
32 python3-orjson \
33 python3-dirty-equals \
34 python3-pytest-httpx \
35 python3-python-multipart \
36 python3-sqlalchemy \
37 python3-trio \
38"