summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-01-14 15:33:45 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:51 +0100
commitb49f6636a0098c0e7933f24cf1677615e8657ec4 (patch)
treedbdc60268ad643ad666c5215e30a255bf5189fd0 /gnu/packages
parentabbade3c60b039788ee1855112792c0c561ff79a (diff)
gnu: python-fastapi: Update to 0.128.0.
* gnu/packages/python-web.scm (python-fastapi): Update to 0.128.0. [arguments]<#:test-flags>: Update them. Change-Id: Ibc25b68e370e26c3d922096876ad8679caeda44c Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-web.scm19
1 files changed, 9 insertions, 10 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 680182b8cad..589cb16da1c 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -13115,26 +13115,25 @@ Amazon S3 or any other external service.")
(define-public python-fastapi
(package
(name "python-fastapi")
- (version "0.124.0")
+ (version "0.128.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "fastapi" version))
(sha256
- (base32 "1rplb37099ivd9bxyy80hljb4979zsqdjbqzk5cx5rkmmmwd2316"))))
+ (base32 "0nk4ybvzv3bcgv5plbg3infykp19p1wryhpy1zk6n2pirvhpkh8w"))))
(build-system pyproject-build-system)
(arguments
(list
;; tests: 1126 passed, 12 skipped, 2 deselected
#:test-flags
- #~(list "--ignore=tests/test_tutorial/"
- "--ignore=docs_src/"
- ;; Coverage is required.
- "--deselect=tests/test_fastapi_cli.py::test_fastapi_cli"
- ;; pytest.PytestUnraisableExceptionWarning: Exception ignored
- ;; in: <function MemoryObjectReceiveStream.__del__ at
- ;; 0x7ffff654af20>
- "-Wignore::pytest.PytestUnraisableExceptionWarning")))
+ #~(list
+ ;; cannot import name 'StaticPool' from 'sqlalchemy'
+ "--ignore=tests/test_tutorial/"
+ ;; Some snapshots have incorrect values.
+ "--deselect=tests/test_schema_compat_pydantic_v2.py::test_openapi_schema"
+ ;; Argument() missing 1 required positional argument: 'default'
+ "--ignore=tests/test_fastapi_cli.py")))
(native-inputs
(list python-anyio
python-dirty-equals