mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add python-sge-pygame.
* gnu/packages/game-development.scm (python-sge-pygame, python2-sge-pygame): New variables.
This commit is contained in:
parent
bc0e6c9312
commit
45f8e7f75e
1 changed files with 27 additions and 0 deletions
|
@ -187,6 +187,33 @@ (define-public gzochi
|
||||||
provide connectivity for client applications written in any language.")
|
provide connectivity for client applications written in any language.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public python-sge-pygame
|
||||||
|
(package
|
||||||
|
(name "python-sge-pygame")
|
||||||
|
(version "1.4.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "sge-pygame" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1qhrcja1igqkjjn1w425ni5f41mijdq5dpq0ymkhl29xxrf8hnx8"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-pygame" ,python-pygame)
|
||||||
|
("python-six" ,python-six)))
|
||||||
|
(home-page "http://stellarengine.nongnu.org")
|
||||||
|
(synopsis "2D game engine for Python")
|
||||||
|
(description
|
||||||
|
"The SGE Game Engine (\"SGE\", pronounced like \"Sage\") is a
|
||||||
|
general-purpose 2D game engine. It takes care of several details fro you so
|
||||||
|
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 python2-sge-pygame
|
||||||
|
(package-with-python2 python-sge-pygame))
|
||||||
|
|
||||||
(define-public tiled
|
(define-public tiled
|
||||||
(package
|
(package
|
||||||
(name "tiled")
|
(name "tiled")
|
||||||
|
|
Loading…
Reference in a new issue