[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#56740] [PATCH 2/6] gnu: Add python-starlette.
From: |
Hartmut Goebel |
Subject: |
[bug#56740] [PATCH 2/6] gnu: Add python-starlette. |
Date: |
Sun, 24 Jul 2022 16:45:21 +0200 |
* gnu/packages/python-web.scm (python-starlette): New variable.
---
gnu/packages/python-web.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index ee722346b6..80a36bd04c 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -7661,3 +7661,29 @@ admin section of stores using an ActiveResource-like
interface similar the
ruby Shopify API gem. The library makes HTTP requests to Shopify in order to
list, create, update, or delete resources (e.g. Order, Product, Collection).")
(license license:expat)))
+
+(define-public python-starlette
+ (package
+ (name "python-starlette")
+ (version "0.20.4")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "starlette" version))
+ (sha256
+ (base32
+ "112hmwk4fh4dl21nlr2xd37h43xzxpjxfnic7v7fz3wr5w9g7z22"))))
+ (build-system python-build-system)
+ (propagated-inputs (list python-anyio
+ python-typing-extensions
+ ;; [all] extra dependencies:
+ python-itsdangerous
+ python-jinja2
+ python-multipart
+ python-pyyaml
+ python-requests))
+ (home-page "https://github.com/encode/starlette")
+ (synopsis "Little ASGI library")
+ (description
+ "Starlette is a lightweight ASGI (Asynchronous Server Gateway
+Interface) framework/toolkit for building async web services in Python.")
+ (license license:bsd-3)))
--
2.30.4
- [bug#56740] [PATCH 0/6] Some python modules, Hartmut Goebel, 2022/07/24
- [bug#56740] [PATCH 2/6] gnu: Add python-starlette.,
Hartmut Goebel <=
- [bug#56740] [PATCH 4/6] gnu: Add python-rcslice., Hartmut Goebel, 2022/07/24
- [bug#56740] [PATCH 3/6] gnu: Add python-cyclic., Hartmut Goebel, 2022/07/24
- [bug#56740] [PATCH 5/6] gnu: Add python-mdx-include., Hartmut Goebel, 2022/07/24
- [bug#56740] [PATCH 6/6] gnu: Add python-types-orjson., Hartmut Goebel, 2022/07/24
- [bug#56740] [PATCH 1/6] gnu: Add python-mkdocs-markdownextradata-plugin., Hartmut Goebel, 2022/07/24