From: Adam Faiz via Guix-patches via <guix-patches@gnu.org>
To: 67131@debbugs.gnu.org
Subject: [bug#67131] [PATCH v3 6/7] gnu: Add python-pytmx.
Date: Mon, 18 Dec 2023 23:19:31 +0800 [thread overview]
Message-ID: <39a919be-0684-f528-c29e-e71647e2f813@disroot.org> (raw)
In-Reply-To: <f3c2e936-4c2a-13d1-248f-00f1425627bc@disroot.org>
From c3f4e8eb98b1c0e802e80e1853476630feb7db6c Mon Sep 17 00:00:00 2001
Message-ID: <c3f4e8eb98b1c0e802e80e1853476630feb7db6c.1702911965.git.adam.faiz@disroot.org>
In-Reply-To: <9f6186753e6b9cd1f70ec11059c193d30db123aa.1702911964.git.adam.faiz@disroot.org>
References: <9f6186753e6b9cd1f70ec11059c193d30db123aa.1702911964.git.adam.faiz@disroot.org>
From: AwesomeAdam54321 <adam.faiz@disroot.org>
Date: Mon, 13 Nov 2023 11:43:51 +0800
Subject: [PATCH v3 6/7] gnu: Add python-pytmx.
* gnu/packages/game-development.scm (python-pytmx): New variable.
---
gnu/packages/game-development.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index 5ee4b08e21..a2d7c5ea63 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -532,6 +532,25 @@ (define-public python-pyscroll
for animated scrolling maps for your new or existing game.")
(license license:lgpl3+)))
+(define-public python-pytmx
+ (package
+ (name "python-pytmx")
+ (version "3.32")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "PyTMX" version))
+ (sha256
+ (base32
+ "1jh9b0pjqbjdv72v5047p5d769ic084g013njvky0zcfiwrxi3w5"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ (list python-pygame python-pysdl2 python-pyglet))
+ (home-page "https://github.com/bitcraft/PyTMX")
+ (synopsis "Python library to read Tiled Map Editor's TMX maps")
+ (description "@code{pytmx} is a map loader for python/pygame designed for games.
+It provides smart tile loading with a fast and efficient storage base.")
+ (license license:lgpl3+)))
+
(define-public python-tmx
(package
(name "python-tmx")
--
2.41.0
next prev parent reply other threads:[~2023-12-18 15:20 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-12 17:02 [bug#67131] [PATCH 0/7] gnu: Add tuxemon Adam Faiz via Guix-patches via
2023-11-12 17:06 ` [bug#67131] [PATCH 1/7] gnu: Add python-neteria Adam Faiz via Guix-patches via
2023-11-12 17:09 ` [bug#67131] [PATCH 2/7] gnu: Add python-pyglet Adam Faiz via Guix-patches via
2023-11-12 17:10 ` [bug#67131] [PATCH 3/7] gnu: python-pygame: Update to 2.5.2 Adam Faiz via Guix-patches via
2023-11-12 17:11 ` [bug#67131] [PATCH 4/7] gnu: Add python-pygame-menu Adam Faiz via Guix-patches via
2023-11-12 17:12 ` [bug#67131] [PATCH 5/7] gnu: Add python-pyscroll Adam Faiz via Guix-patches via
2023-11-12 17:13 ` [bug#67131] [PATCH 6/7] gnu: Add python-pytmx Adam Faiz via Guix-patches via
2023-11-12 17:14 ` [bug#67131] [PATCH 7/7] gnu: Add tuxemon Adam Faiz via Guix-patches via
2023-11-13 4:03 ` [bug#67131] [PATCH v1 1/7] gnu: Add python-neteria Adam Faiz via Guix-patches via
2023-11-13 4:06 ` [bug#67131] [PATCH v2 " Adam Faiz via Guix-patches via
2023-11-13 4:08 ` [bug#67131] [PATCH v2 2/7] gnu: Add python-pyglet Adam Faiz via Guix-patches via
2023-11-13 4:09 ` [bug#67131] [PATCH v2 3/7] gnu: python-pygame: Update to 2.5.2 Adam Faiz via Guix-patches via
2023-11-13 4:11 ` [bug#67131] [PATCH v2 4/7] gnu: Add python-pygame-menu Adam Faiz via Guix-patches via
2023-11-13 4:12 ` [bug#67131] [PATCH v2 5/7] gnu: Add python-pyscroll Adam Faiz via Guix-patches via
2023-11-13 4:14 ` [bug#67131] [PATCH v2 6/7] gnu: Add python-pytmx Adam Faiz via Guix-patches via
2023-11-13 4:15 ` [bug#67131] [PATCH v2 7/7] gnu: Add tuxemon Adam Faiz via Guix-patches via
2023-12-18 15:10 ` [bug#67131] [PATCH v3 1/7] gnu: Add python-neteria Adam Faiz via Guix-patches via
2023-12-18 15:13 ` [bug#67131] [PATCH v3 2/7] gnu: Add python-pyglet Adam Faiz via Guix-patches via
2023-12-18 15:14 ` [bug#67131] [PATCH v3 3/7] gnu: python-pygame: Update to 2.5.2 Adam Faiz via Guix-patches via
2023-12-18 15:16 ` [bug#67131] [PATCH v3 4/7] gnu: Add python-pygame-menu Adam Faiz via Guix-patches via
2023-12-18 15:18 ` [bug#67131] [PATCH v3 5/7] gnu: Add python-pyscroll Adam Faiz via Guix-patches via
2023-12-18 15:19 ` Adam Faiz via Guix-patches via [this message]
2023-12-18 15:21 ` [bug#67131] [PATCH v3 7/7] gnu: Add tuxemon Adam Faiz via Guix-patches via
2024-10-18 20:19 ` [bug#67131] [PATCH 0/7] " Sharlatan Hellseher
[not found] <9f6186753e6b9cd1f70ec11059c193d30db123aa.1702911964.git.adam.faiz@disroot.org>
[not found] ` <e73f2b26c294c32f791774a8f6f44385f650a96f.1702911965.git.adam.faiz@disroot.org>
2024-05-14 7:33 ` [bug#67131] [PATCH v3 7/7] " Liliana Marie Prikler
2024-07-01 2:58 ` [bug#67131] [PATCH 0/7] " jgart via Guix-patches via
2024-07-01 6:24 ` Adam Faiz via Guix-patches via
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=39a919be-0684-f528-c29e-e71647e2f813@disroot.org \
--to=guix-patches@gnu.org \
--cc=67131@debbugs.gnu.org \
--cc=adam.faiz@disroot.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).