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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
pdm-backend,
# dependencies
annotated-doc,
starlette,
pydantic,
typing-extensions,
# tests
anyio,
dirty-equals,
flask,
inline-snapshot,
passlib,
pwdlib,
pyjwt,
pytest-asyncio,
pytestCheckHook,
sqlalchemy,
trio,
# optional-dependencies
fastapi-cli,
httpx,
jinja2,
itsdangerous,
python-multipart,
pyyaml,
ujson,
orjson,
email-validator,
uvicorn,
pydantic-settings,
pydantic-extra-types,
}:
buildPythonPackage rec {
pname = "fastapi";
version = "0.121.1";
pyproject = true;
src = fetchFromGitHub {
owner = "tiangolo";
repo = "fastapi";
tag = version;
hash = "sha256-uUUARIHY8VBoLfWfMvveapypqiB00cTTWpJ4fi9nvUo=";
};
build-system = [ pdm-backend ];
pythonRelaxDeps = [
"anyio"
"starlette"
];
dependencies = [
annotated-doc
starlette
pydantic
typing-extensions
];
optional-dependencies = {
all = [
fastapi-cli
httpx
jinja2
python-multipart
itsdangerous
pyyaml
ujson
orjson
email-validator
uvicorn
]
++ lib.optionals (lib.versionAtLeast pydantic.version "2") [
pydantic-settings
pydantic-extra-types
]
++ fastapi-cli.optional-dependencies.standard
++ uvicorn.optional-dependencies.standard;
standard = [
fastapi-cli
httpx
jinja2
python-multipart
email-validator
uvicorn
]
++ fastapi-cli.optional-dependencies.standard
++ uvicorn.optional-dependencies.standard;
};
nativeCheckInputs = [
anyio
dirty-equals
flask
inline-snapshot
passlib
pwdlib
pyjwt
pytestCheckHook
pytest-asyncio
trio
sqlalchemy
]
++ anyio.optional-dependencies.trio
++ passlib.optional-dependencies.bcrypt
++ optional-dependencies.all;
pytestFlags = [
# ignoring deprecation warnings to avoid test failure from
# tests/test_tutorial/test_testing/test_tutorial001.py
"-Wignore::DeprecationWarning"
"-Wignore::pytest.PytestUnraisableExceptionWarning"
];
disabledTests = [
# Coverage test
"test_fastapi_cli"
# Likely pydantic compat issue
"test_exception_handler_body_access"
];
disabledTestPaths = [
# Don't test docs and examples
"docs_src"
"tests/test_tutorial/test_sql_databases"
];
pythonImportsCheck = [ "fastapi" ];
meta = {
changelog = "https://github.com/fastapi/fastapi/releases/tag/${src.tag}";
description = "Web framework for building APIs";
homepage = "https://github.com/fastapi/fastapi";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ wd15 ];
};
}
|