lilyp pushed a commit to branch master in repository guix. commit ac678fd48dde5f67d73cd24e45ae21f45f64e6a0 Author: Adam Faiz <adam.f...@disroot.org> AuthorDate: Sat Feb 15 09:47:29 2025 +0800
gnu: Add python-pyscroll. * gnu/packages/game-development.scm (python-pyscroll): New variable. Signed-off-by: Liliana Marie Prikler <liliana.prik...@gmail.com> --- gnu/packages/game-development.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 553bd299bc..268f90ea69 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -616,6 +616,24 @@ you can focus on the game itself. This makes more rapid game development possible, and it also makes the SGE easy to learn.") (license license:lgpl3+))) +(define-public python-pyscroll + (package + (name "python-pyscroll") + (version "2.31") + (source (origin + (method url-fetch) + (uri (pypi-uri "pyscroll" version)) + (sha256 + (base32 + "0w3c58mkkbsyvx9w9hwdizk20pbds800m7v9vg49ydw440dha0hr")))) + (build-system python-build-system) + (propagated-inputs (list python-pygame)) + (home-page "https://github.com/bitcraft/pyscroll") + (synopsis "Fast scrolling maps library for pygame") + (description "@code{pyscroll} is a simple and fast module +for animated scrolling maps for your new or existing game.") + (license license:lgpl3+))) + (define-public python-tmx (package (name "python-tmx")