summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAwesomeAdam54321 <adam.faiz@disroot.org>2025-11-02 15:35:47 +0800
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2025-11-02 11:27:20 +0100
commit43f16447d0e809db05d5fdb5e31bd27a7c0f4091 (patch)
tree4d6482978e6205b83fc9b6301853b1a6c01fdd1d /gnu
parent304522c186b37939cb35c47b819a86da1efec78e (diff)
gnu: Add python-anvil-parser.
* gnu/packages/game-development.scm (python-anvil-parser): New variable. Change-Id: Ie51482ab1710f85e389bfcdfb4b75ba0e1ec3833 Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/game-development.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index 8cce3db75c7..b163a451b32 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -560,6 +560,28 @@ types (circle, polygon, thin line segments), and quite a few joint
types (revolute, prismatic, wheel, etc.).")
(license license:zlib)))
+(define-public python-anvil-parser
+ (let ((commit "27544bb41f035617be130a209a84371cbaf837cc")
+ (revision "0"))
+ (package
+ (name "python-anvil-parser")
+ (version (git-version "0.9.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/0xTiger/anvil-parser")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "196nli36pz4sllx1m8jlys661hgbxhcxr2c4545fqb4nd27hhwy7"))))
+ (build-system python-build-system)
+ (propagated-inputs (list python-frozendict python-nbt))
+ (home-page "https://github.com/0xTiger/anvil-parser")
+ (synopsis "Anvil file format parser")
+ (description "This package provides an Anvil file format parser.")
+ (license license:expat))))
+
(define-public python-nbt
(package
(name "python-nbt")