[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55831] [PATCH] gnu: Add python-starlette.
From: |
peter |
Subject: |
[bug#55831] [PATCH] gnu: Add python-starlette. |
Date: |
Tue, 7 Jun 2022 10:35:35 -0400 |
From: Peter Polidoro <peter@polidoro.io>
* gnu/packages/python-web.scm (python-starlette): New variable.
---
gnu/packages/python-web.scm | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 06a0d2593b..874ef73093 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -1200,6 +1200,24 @@ (define-public python-h2
Python HTTP implementation.")
(license license:expat)))
+(define-public python-starlette
+ (package
+ (name "python-starlette")
+ (version "0.20.1")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "starlette" version))
+ (sha256
+ (base32
+ "1si8plb5lgwkcaqzccrrisiksdrxldq94kij73i0mizn7l42g0nx"))))
+ (build-system python-build-system)
+ (propagated-inputs (list python-anyio python-typing-extensions))
+ (home-page "https://github.com/encode/starlette")
+ (synopsis "Lightweight ASGI framework for building async web services in
Python")
+ (description "This package is a lightweight Asynchronous Server Gateway
Interface for
+building async web services in Python.")
+ (license license:bsd-3)))
+
(define-public python-sockjs-tornado
(package
(name "python-sockjs-tornado")
--
2.36.1
- [bug#55831] Add python-platformio and dependencies, Peter Polidoro, 2022/06/07
- [bug#55831] [PATCH] gnu: Add python-starlette.,
peter <=
- [bug#55831] [PATCH] Add extra dependencies to python-starlette, peter, 2022/06/07
- [bug#55831] [PATCH] gnu: python-h11: Update to 0.13.0., peter, 2022/06/07
- [bug#55831] [PATCH] gnu: python-wsproto: Update to 1.1.0., peter, 2022/06/07
- [bug#55831] [PATCH] gnu: python-httpcore and python-httpx: Update to 0.15.0 and 0.23.0, peter, 2022/06/07
- [bug#55831] [PATCH] gnu: python-sanic-testing: Update requirements., peter, 2022/06/07
- [bug#55831] [PATCH] gnu: python-aiofiles: Update to 0.8.0., peter, 2022/06/07
- [bug#55831] [PATCH] gnu: python-semantic-version: Update to 2.10.0., peter, 2022/06/07
- [bug#55831] [PATCH] gnu: Add python-platformio., peter, 2022/06/07
- [bug#55831] [PATCH] Rename python-platformio to platformio, peter, 2022/06/08