From 9ce816084429bde4d98010dc4797988c7930a8a2 Mon Sep 17 00:00:00 2001 From: Patrick Norton Date: Sun, 21 Dec 2025 08:50:10 -0500 Subject: [PATCH] gnu: nml: Update to 0.8.1. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/game-development.scm (nml): Update to 0.8.1. [arguments]: Fix test phase. Closes: guix/guix#5004 Change-Id: I03b80af19d809295411b85df491d7423837e6f59 Signed-off-by: 宋文武 --- gnu/packages/game-development.scm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index b00b99b9165..d96bd461289 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -510,13 +510,19 @@ PCM data.") (define-public nml (package (name "nml") - (version "0.7.6") + (version "0.8.1") (source (origin (method url-fetch) (uri (pypi-uri "nml" version)) (sha256 - (base32 "0if99hk9dsiw33iabkrbrpwybv8vl3hpim1cf07sklkshigwxryr")))) + (base32 "0krs3jac9jc0zqr59ivfl5vibqc15b4yhww73j3c01dla1shvlcj")))) + (arguments + (list #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda _ + (invoke "make" "-C" "regression")))))) (build-system python-build-system) (propagated-inputs (list python-pillow python-ply))