unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#48467] [PATCH] gnu: Add python-pyglet.
@ 2021-05-16 15:52 Adam Kandur via Guix-patches via
  0 siblings, 0 replies; only message in thread
From: Adam Kandur via Guix-patches via @ 2021-05-16 15:52 UTC (permalink / raw)
  To: 48467

From 4804e417e9e131022a1f9f4a155b30cf85cc5eec Mon Sep 17 00:00:00 2001
From: Adam Kandur <rndd@tuta.io>
Date: Sun, 16 May 2021 18:47:39 +0300
Subject: [PATCH] gnu: Add python-pyglet.

* gnu/packages/python-xyz.scm (python-pyglet): New variable.
---
gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f79fc54e24..b1d51b6a26 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -4022,6 +4022,32 @@ text styles of documentation.")
     (description "This package installs Github custom lexers to Pygments.")
     (license license:bsd-3)))

+(define-public python-pyglet
+    (package
+      (name "python-pyglet")
+      ;; as mentioned in README, this is the stable branch
+      (version "pyglet-1.5-maintenance")
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+	       (url "https://github.com/pyglet/pyglet")
+	       (commit version)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1f90pc21x4rq1qp0qddk111h4kyivhhcfc8k0mx67k89rz9hcrm2"))))
+      (build-system python-build-system)
+      (arguments
+       '(#:tests? #f)) ; FIXME: tests are failing.
+      (native-inputs
+       `(("python-setuptools" ,python-setuptools)))
+      (home-page "https://github.com/pyglet/pyglet")
+      (synopsis "pyglet is a cross-platform windowing and multimedia library for Python")
+      (description "This library is intended for developing games and other visually rich applications. 
+It supports windowing, user interface event handling, Joysticks, OpenGL graphics, loading images and videos,
+and playing sounds and music.")
+      (license license:bsd-3)))
+
(define-public python-bump2version
   (package
     (name "python-bump2version")
--
2.31.1






^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-05-16 15:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-16 15:52 [bug#48467] [PATCH] gnu: Add python-pyglet Adam Kandur via Guix-patches via

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).