diff options
author | Ricardo Wurmus <[email protected]> | 2025-02-27 08:14:42 +0100 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2025-02-27 09:59:49 +0100 |
commit | 00f1a7c2444181f83c366507ae848d8692df9875 (patch) | |
tree | f3acc294a74a3dd61a8b294a174fc3b9d4047789 /gnu/packages/python-web.scm | |
parent | 58344a6dc7d17e35c981f8d83d50d356452f28e8 (diff) |
gnu: python-fastapi-csrf-protect: Update to 0.3.3.
* gnu/packages/python-web.scm (python-fastapi-csrf-protect): Update to 0.3.3.
[propagated-inputs]: Replace python-pydantic with python-pydantic-2.
Change-Id: Iecc1325e4351b76b6bc2cb63fc56bbac30f963d8
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r-- | gnu/packages/python-web.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index ffc85ca804..dc6a21be55 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -10420,21 +10420,20 @@ starlette.") (define-public python-fastapi-csrf-protect (package (name "python-fastapi-csrf-protect") - (version "0.3.1") + (version "0.3.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/aekasitt/fastapi-csrf-protect") - ;; This commit corresponds to version 0.3.1 - (commit "536acd651d0d3f9862a0b753ba64dd2d187f8655"))) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 - "1zlwa0fplmcihylyvakskwkbkl2cq291fmys5x6wrpfdbjrqbgbj")))) + "181yawlbpd4709mamsradr9zj0jrbp4qvwfvmggs80pd36iiwyy8")))) (build-system pyproject-build-system) (propagated-inputs (list python-fastapi python-itsdangerous - python-pydantic)) + python-pydantic-2)) (native-inputs (list python-poetry-core python-pytest)) |