diff options
author | Mark L <cake@pydis.com> | 2025-06-04 16:15:16 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-06-04 16:45:09 +0200 |
commit | f4a01ffb8101cefba9c3788de12bc5607ec8930e (patch) | |
tree | ad72fcf75aa7ddf1c6ee669d78c5dfcf50df1994 | |
parent | 871f09b6f7ebf16baeef4b35f9637548acae5a28 (diff) |
gnu: nml: Update to 0.7.6.
* gnu/packages/game-development.scm (nml): Update to 0.7.6.
[arguments]: Remove.
Change-Id: I358fe50ac42209c20b19da361d2e78d0576b6ac4
-rw-r--r-- | gnu/packages/game-development.scm | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index f9b80da6ab..1d80daddd1 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -546,19 +546,14 @@ provide connectivity for client applications written in any language.") (define-public nml (package (name "nml") - (version "0.7.2") + (version "0.7.6") (source (origin (method url-fetch) (uri (pypi-uri "nml" version)) (sha256 - (base32 "1kgzkv8pc0blck8c6iqq1idx1nrxyjw2vbnrdisnxizi6zds5l73")))) + (base32 "0if99hk9dsiw33iabkrbrpwybv8vl3hpim1cf07sklkshigwxryr")))) (build-system python-build-system) - ;; TODO: Fix test that fails with - ;; "AttributeError: partially initialized module 'nml.nmlop' has no - ;; attribute 'ADD' (most likely due to a circular import)" - (arguments - '(#:tests? #f)) (propagated-inputs (list python-pillow python-ply)) (home-page "https://github.com/OpenTTD/nml") |