blob: 30bfda36d0bd401fb30073263c8d4aaab71e2f5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# Copyright 2025-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=pdm-backend
PYTHON_COMPAT=( python3_{13..14} )
#may be not stricly required
PYTHON_REQ_USE="threads(+)"
inherit distutils-r1 optfeature pypi
DESCRIPTION="High performance framework, easy to learn, fast to code, ready for production"
HOMEPAGE="https://fastapi.tiangolo.com/ https://pypi.org/project/fastapi/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
>=dev-python/annotated-doc-0.0.4[${PYTHON_USEDEP}]
>=dev-python/starlette-0.46.0[${PYTHON_USEDEP}]
>=dev-python/pydantic-2.9.0[${PYTHON_USEDEP}]
>=dev-python/typing-extensions-4.8.0[${PYTHON_USEDEP}]
>=dev-python/typing-inspection-0.4.2[${PYTHON_USEDEP}]
"
#FIXME: add missing deps
BDEPEND="test? (
dev-python/a2wsgi[${PYTHON_USEDEP}]
dev-python/dirty-equals[${PYTHON_USEDEP}]
dev-python/flask[${PYTHON_USEDEP}]
dev-python/inline-snapshot[${PYTHON_USEDEP}]
dev-python/pytest-timeout[${PYTHON_USEDEP}]
dev-python/python-multipart[${PYTHON_USEDEP}]
dev-python/sqlalchemy[${PYTHON_USEDEP}]
dev-python/typer[${PYTHON_USEDEP}]
)"
# 3k tests+, so use xdist to speed them up
EPYTEST_XDIST=1
distutils_enable_tests pytest
# There are some JSON response tests that will exercise orjson or ujson if they are available.
# These are properly skipped if the optional dependencies are not installed at the cost of a little spam.
python_test() {
local EPYTEST_IGNORE=(
# python/strawberry-graphql (in guru, test dep only)
tests/test_tutorial/test_graphql/test_tutorial001.py
# dev-python/sqlmodel (in guru, test dep only)
tests/test_tutorial/test_sql_databases/test_tutorial001.py
tests/test_tutorial/test_sql_databases/test_tutorial002.py
# dev-python/fastapi-cli (missing, test and optfeature)
tests/test_fastapi_cli.py
# dev-python/pwdlib (in guru, test dep only)
tests/test_tutorial/test_security/test_tutorial004.py
tests/test_tutorial/test_security/test_tutorial005.py
# Wants dev-python/multipart _just_ to complain that it's not the right multipart lib.
tests/test_multipart_installation.py
# scripts/tests use CliRunner.isolated_filesystem() removed in recent typer
scripts/tests
)
local EPYTEST_DESELECT=(
# Requires investigation - missing ./image.png test file (?)
tests/test_tutorial/test_additional_responses/test_tutorial004.py::test_path_operation_img
)
epytest
}
pkg_postinst() {
# not part of any upstream extra
optfeature "alternative JSON library" "dev-python/ujson" # orjson, too but it's deprecated
# pyproject.toml:project.optional-dependencies.standard
# Following optfeatures should be exposed, but missing deps
# optfeature "fastAPI CLI" "dev-python/fastapi-cli" - missing - depends on this package!
# optfeature "compressed file support" "dev-python/fastar" - missing
# optfeature "pydantic extra types support" "dev-python/pydantic-extra-types" - in guru
optfeature_header "standard extras"
optfeature "ASGI server support" "dev-python/uvicorn"
optfeature "email validation support" "dev-python/email-validator"
optfeature "TestClient for testing FastAPI applications" "dev-python/httpx"
optfeature "templating support" "dev-python/jinja2"
optfeature "multipart form data support" "dev-python/python-multipart"
optfeature "settings management support" "dev-python/pydantic-settings"
# pyproject.toml:project.optional-dependencies.all - includes all the above plus:
optfeature_header "all extras"
optfeature "session middleware support" "dev-python/itsdangerous"
optfeature "YAML support" "dev-python/pyyaml"
}
|