guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit f86f891497b2e6abaf5fb5e415e712348312760f
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jun 10 20:21:57 2026 +0100
gnu: python-pytest-httpserver: Update to 1.1.5.
* gnu/packages/check.scm (python-pytest-httpserver): Update to 1.1.5.
[source]: Switch to git-fetch.
[native-inputs]: Remove python-toml; add python-requests.
Change-Id: I31806c510c02364cb2cc2980a7f7d1966262c7af
---
gnu/packages/check.scm | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index e21280cf89..8f6fd3da4c 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1868,18 +1868,21 @@ update print statements
(define-public python-pytest-httpserver
(package
(name "python-pytest-httpserver")
- (version "1.1.0")
+ (version "1.1.5")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "pytest_httpserver" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/csernazs/pytest-httpserver")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "00c7vki5qpl40qn5riyppkjnmgrvhsbg0hsdp6qm3m9fkqcv073b"))))
+ (base32 "0ak1dgwc88ayav933qs46immhlrpyc5a7xflh6f1dr5j00pknrg8"))))
(build-system pyproject-build-system)
(native-inputs
(list python-poetry-core
- python-toml
- python-pytest))
+ python-pytest
+ python-requests))
(propagated-inputs
(list python-werkzeug))
(home-page "https://github.com/csernazs/pytest-httpserver")