guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 22045e667d9cd1a9ca0421382a7a158711619b7e
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Sep 28 18:15:40 2025 +0200
gnu: leo: Switch to pyproject.
* gnu/packages/web-browsers.scm (leo):
[build-system]: Switch to pyproject-build-system.
[arguments]<#:tests?>: Disable them.
[native-inputs]: Add python-setuptools.
Change-Id: I04ad66f944fed21b832d85ea9b443293a337d942
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/web-browsers.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm
index 5940ca5418..c0820f400b 100644
--- a/gnu/packages/web-browsers.scm
+++ b/gnu/packages/web-browsers.scm
@@ -1095,7 +1095,9 @@ with a terminal interface, for Gemini also a GUI is
available.")
(file-name (git-file-name name version))
(sha256
(base32 "0jp4v4jw82qqynqqs7x35g5yvm1sd48cvbqh7j2r1ixw1z6ldhc4"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
+ (arguments (list #:tests? #f)) ; No tests.
+ (native-inputs (list python-setuptools))
(home-page "https://github.com/xyzshantaram/leo")
(synopsis "Gemini client written in Python")
(description