summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-01-12 20:35:44 +0000
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:23:35 +0100
commit2e3469379b892a1be873b7b250e7333c7b286073 (patch)
treed440b7f9bb6b4345537e2556f0ec44edb3c604b2 /gnu
parentf65c0f780c99ef4581e0ad788d5966010c8c8e1f (diff)
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 Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/game-development.scm8
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index accd71ae771..fac9703852b 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -750,7 +750,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")