guix_mirror_bot pushed a commit to branch next-master
in repository guix.
commit e8740dc6212dd050c1d1a7f2ffff2deae615b64b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Jan 12 20:35:44 2026 +0000
gnu: python-tmx: Switch to pyproject.
* gnu/packages/game-development.scm (python-tmx):
[build-system]: Switch to pyproejct-build-system.
[arguments] <tests?>: No tests.
[native-inputs]: Add python-setuptools.
Change-Id: I30d4034b8cc38e35175b5c30b5914ce74cfe1473
---
gnu/packages/game-development.scm | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/game-development.scm
b/gnu/packages/game-development.scm
index c491906227..bca55f6ef3 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -749,7 +749,13 @@ It provides smart tile loading with a fast and efficient
storage base.")
(sha256
(base32
"073q0prg1nzlkga2b45vhscz374206qh4x68ccg00mxxwagn64z0"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
+ ;; XXX: No releases/updates since 2017, it a single file project without
+ ;; tests.
+ (arguments
+ (list #:tests? #f))
+ (native-inputs
+ (list python-setuptools))
(propagated-inputs
(list python-six))
(home-page "https://python-tmx.nongnu.org")