From d3fe071da56e9cac3d728b8403da6683d477b89c Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sat, 22 Nov 2025 22:12:04 +0100 Subject: [PATCH] gnu: seahorse-adventures: Switch to pyproject. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/games.scm (seahorse-adventures): [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. Signed-off-by: Ludovic Courtès --- gnu/packages/games.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 916b974cd597329a9c575c57b481496f2075dbcf..f6237cf1c1888d338871182af53d4c2e5c9f3125 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -3190,7 +3190,7 @@ can be explored and changed freely.") (snippet #~(begin (for-each delete-file (find-files "data/fonts" ".")))))) - (build-system python-build-system) + (build-system pyproject-build-system) (arguments (list #:tests? #f ;no test @@ -3265,6 +3265,7 @@ can be explored and changed freely.") (symlink vera (string-append data "/data/fonts/04B_20__.TTF")) (substitute* (string-append data "/lib/main.py") (("f_scale = 0.35") "f_scale = 0.47")))))))) + (native-inputs (list python-setuptools)) (inputs (list font-bitstream-vera python-pygame)) (home-page "http://www.imitationpickles.org/barbie/")