diff options
| author | AwesomeAdam54321 <adam.faiz@disroot.org> | 2025-11-02 15:34:38 +0800 |
|---|---|---|
| committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2025-11-02 11:27:19 +0100 |
| commit | 304522c186b37939cb35c47b819a86da1efec78e (patch) | |
| tree | c7cdae5e3f1862de4e4ba5d65d0721f0700fa886 | |
| parent | 28b5d5c9db66d48a663f95fb18bb1a53ab1f2b0b (diff) | |
gnu: Add python-nbt.
* gnu/packages/game-development.scm (python-nbt): New variable.
Change-Id: Ib81e96b4abc45aec5eb8b3f785588e449507c957
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
| -rw-r--r-- | gnu/packages/game-development.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 86d8e3123ea..8cce3db75c7 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -560,6 +560,24 @@ types (circle, polygon, thin line segments), and quite a few joint types (revolute, prismatic, wheel, etc.).") (license license:zlib))) +(define-public python-nbt + (package + (name "python-nbt") + (version "1.5.1") + (source (origin + (method url-fetch) + (uri (pypi-uri "NBT" version)) + (sha256 + (base32 + "1i9ncrzy5zcfnxzkh2j31n9ayzxfncckzwa6fkz9vjq5fq9v4fys")))) + (build-system python-build-system) + (home-page "https://github.com/twoolie/NBT") + (synopsis "Named Binary Tag reader and writer") + (description + "This library is a parser and writer for the NBT file format. It is suited +to inspect and edit the Minecraft data files.") + (license license:expat))) + (define-public python-sge (package (name "python-sge") |
