guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 8c2b50e7791d817f1083ef2b57039b059466a894
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jun 10 19:12:33 2026 +0100
gnu: python-ephemeral-port-reserve: Drop python-wheel.
* gnu/packages/python-web.scm (python-ephemeral-port-reserve):
[native-inputs]: Remove python-wheel.
Change-Id: Ia4d8429143fbb1c9710351cd4def76729e7d327e
---
gnu/packages/python-web.scm | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index a6938d1209..6756b3ecb5 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -9167,7 +9167,7 @@ this it tries to be opinion-free and very extendable.")
(version "1.1.4")
(source
(origin
- (method git-fetch) ;no tests in PyPI archive
+ (method git-fetch)
(uri (git-reference
(url "https://github.com/Yelp/ephemeral-port-reserve")
(commit (string-append "v" version))))
@@ -9177,8 +9177,7 @@ this it tries to be opinion-free and very extendable.")
(build-system pyproject-build-system)
(native-inputs
(list python-pytest
- python-setuptools
- python-wheel))
+ python-setuptools))
(home-page "https://github.com/Yelp/ephemeral-port-reserve/")
(synopsis "Find an unused port, reliably")
(description