[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/15: gnu: python-starlette: Update to 0.25.0.
From: |
guix-commits |
Subject: |
07/15: gnu: python-starlette: Update to 0.25.0. |
Date: |
Sun, 2 Apr 2023 06:49:11 -0400 (EDT) |
lilyp pushed a commit to branch clinguin
in repository guix.
commit 9e7e23b0b838376ce9b031c047dd90271e8379eb
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sat Mar 18 08:48:57 2023 +0100
gnu: python-starlette: Update to 0.25.0.
* gnu/packages/python-web.scm (python-starlette): Update to 0.25.0.
[source]: Switch to git-fetch and git-reference.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-hatchling, python-httpx, python-pytest, and
python-typing-extensions-next.
---
gnu/packages/python-web.scm | 17 ++++++++++++-----
1 file changed, 12 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 495e13acfe..720c6f5bf7 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -8277,14 +8277,17 @@ SendGrid Web API v3 endpoints, including the new v3
/mail/send.")
(define-public python-starlette
(package
(name "python-starlette")
- (version "0.20.4")
+ (version "0.25.0")
(source (origin
- (method url-fetch)
- (uri (pypi-uri "starlette" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/encode/starlette")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
(base32
- "112hmwk4fh4dl21nlr2xd37h43xzxpjxfnic7v7fz3wr5w9g7z22"))))
- (build-system python-build-system)
+ "1mkkj15lphgycnp51dnrfxbyrx3dicjdcpsqvwc7yw55zyih6h5k"))))
+ (build-system pyproject-build-system)
(propagated-inputs (list python-anyio
python-typing-extensions
;; [all] extra dependencies:
@@ -8293,6 +8296,10 @@ SendGrid Web API v3 endpoints, including the new v3
/mail/send.")
python-multipart
python-pyyaml
python-requests))
+ (native-inputs (list python-hatchling
+ python-httpx
+ python-pytest
+ python-typing-extensions-next))
(home-page "https://github.com/encode/starlette")
(synopsis "Little ASGI library")
(description
- branch clinguin created (now b346e01f61), guix-commits, 2023/04/02
- 03/15: gnu: python-pathspec: Move to (gnu packages python-build)., guix-commits, 2023/04/02
- 01/15: gnu: python-pathspec: Update to 0.11.0., guix-commits, 2023/04/02
- 07/15: gnu: python-starlette: Update to 0.25.0.,
guix-commits <=
- 09/15: gnu: python-pymysql: Update to 1.0.2., guix-commits, 2023/04/02
- 08/15: gnu: python-sqlalchemy: Update to 1.4.42., guix-commits, 2023/04/02
- 12/15: gnu: python-databases: Update to 0.7.0., guix-commits, 2023/04/02
- 06/15: gnu: python-hatchling: Move to (gnu packages build)., guix-commits, 2023/04/02
- 15/15: gnu: Add python-clinguin., guix-commits, 2023/04/02
- 14/15: gnu: Add python-fastapi., guix-commits, 2023/04/02
- 11/15: gnu: python-aiosqlite: Update to 0.18.0., guix-commits, 2023/04/02
- 02/15: gnu: python-pathspec: Revise description., guix-commits, 2023/04/02
- 04/15: gnu: python-pluggy: Move to (gnu packages python-build)., guix-commits, 2023/04/02
- 05/15: gnu: python-hatchling: Use upstream homepage., guix-commits, 2023/04/02