mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 23:18:33 +01:00
gnu: Add python-starlette-for-fastapi-0.88.
* gnu/packages/python-web.scm (python-starlette-for-fastapi-0.88): New variable.
This commit is contained in:
parent
463a598585
commit
3f05f625ea
1 changed files with 20 additions and 0 deletions
|
@ -8274,6 +8274,26 @@ (define-public python-starlette
|
|||
Interface) framework/toolkit for building async web services in Python.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-starlette-for-fastapi-0.88
|
||||
(package
|
||||
(inherit python-starlette)
|
||||
(name "python-starlette")
|
||||
(version "0.22.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/encode/starlette")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0ybhcw80vj44p5b61kbm0jmw4lndm0dqsysi33rysnh20csqn8dz"))))
|
||||
(arguments
|
||||
(list
|
||||
#:test-flags
|
||||
;; XXX: unclear why these tests fail with a decoding error.
|
||||
'(list "-k" "not test_gzip_ignored_for_responses_with_encoding_set")))))
|
||||
|
||||
(define-public python-fastapi
|
||||
(package
|
||||
(name "python-fastapi")
|
||||
|
|
Loading…
Reference in a new issue