all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Adam Faiz via Guix-patches via <guix-patches@gnu.org>
To: 67131@debbugs.gnu.org
Cc: Liliana Marie Prikler <liliana.prikler@gmail.com>
Subject: [bug#67131] [PATCH v3 2/7] gnu: Add python-pyglet.
Date: Mon, 18 Dec 2023 23:13:27 +0800	[thread overview]
Message-ID: <1dc77e86-e0c7-1b06-59a3-d0851ea116c1@disroot.org> (raw)
In-Reply-To: <f3c2e936-4c2a-13d1-248f-00f1425627bc@disroot.org>

From 572849d2c643ecbe62b31cb9f88ee58d43fb8cc2 Mon Sep 17 00:00:00 2001
Message-ID: <572849d2c643ecbe62b31cb9f88ee58d43fb8cc2.1702911964.git.adam.faiz@disroot.org>
In-Reply-To: <9f6186753e6b9cd1f70ec11059c193d30db123aa.1702911964.git.adam.faiz@disroot.org>
References: <9f6186753e6b9cd1f70ec11059c193d30db123aa.1702911964.git.adam.faiz@disroot.org>
From: AwesomeAdam54321 <adam.faiz@disroot.org>
Date: Mon, 13 Nov 2023 11:39:22 +0800
Subject: [PATCH v3 2/7] gnu: Add python-pyglet.

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

diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index 145538e343..3742b45321 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -1399,6 +1399,31 @@ (define-public python-pygame
                    license:public-domain
                    license:lgpl2.1+))))
 
+(define-public python-pyglet
+  (package
+    (name "python-pyglet")
+    (version "2.0.10")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pyglet" version ".zip"))
+       (sha256
+        (base32 "1jdraqr7i3bz64m7yvhcnn3av5mnavn13fp5vzmmnz6n7cdynar4"))))
+    (build-system pyproject-build-system)
+    (native-inputs (list unzip))
+    (arguments
+     ;; TypeError: don't know how to make test from:
+     ;; <pyglet._ModuleProxy object at 0x7ffff697df90>
+     (list #:tests? #f))
+    (home-page "http://pyglet.readthedocs.org/en/latest/")
+    (synopsis "Windowing and multimedia library")
+    (description "@code{pyglet} is a windowing and multimedia library for Python,
+intended for developing games and other visually rich applications.
+It supports windowing, user interface event handling, game controllers
+and joysticks, OpenGL graphics, loading images and videos, and playing sounds
+and music.")
+    (license license:bsd-3)))
+
 (define-public python-pygame-sdl2
   (let ((real-version "2.1.0")
         (renpy-version "8.1.3"))
-- 
2.41.0




  reply	other threads:[~2023-12-18 15:14 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-12 17:02 [bug#67131] [PATCH 0/7] gnu: Add tuxemon Adam Faiz via Guix-patches via
2023-11-12 17:06 ` [bug#67131] [PATCH 1/7] gnu: Add python-neteria Adam Faiz via Guix-patches via
2023-11-12 17:09 ` [bug#67131] [PATCH 2/7] gnu: Add python-pyglet Adam Faiz via Guix-patches via
2023-11-12 17:10 ` [bug#67131] [PATCH 3/7] gnu: python-pygame: Update to 2.5.2 Adam Faiz via Guix-patches via
2023-11-12 17:11 ` [bug#67131] [PATCH 4/7] gnu: Add python-pygame-menu Adam Faiz via Guix-patches via
2023-11-12 17:12 ` [bug#67131] [PATCH 5/7] gnu: Add python-pyscroll Adam Faiz via Guix-patches via
2023-11-12 17:13 ` [bug#67131] [PATCH 6/7] gnu: Add python-pytmx Adam Faiz via Guix-patches via
2023-11-12 17:14 ` [bug#67131] [PATCH 7/7] gnu: Add tuxemon Adam Faiz via Guix-patches via
2023-11-13  4:03 ` [bug#67131] [PATCH v1 1/7] gnu: Add python-neteria Adam Faiz via Guix-patches via
2023-11-13  4:06 ` [bug#67131] [PATCH v2 " Adam Faiz via Guix-patches via
2023-11-13  4:08   ` [bug#67131] [PATCH v2 2/7] gnu: Add python-pyglet Adam Faiz via Guix-patches via
2023-11-13  4:09   ` [bug#67131] [PATCH v2 3/7] gnu: python-pygame: Update to 2.5.2 Adam Faiz via Guix-patches via
2023-11-13  4:11   ` [bug#67131] [PATCH v2 4/7] gnu: Add python-pygame-menu Adam Faiz via Guix-patches via
2023-11-13  4:12   ` [bug#67131] [PATCH v2 5/7] gnu: Add python-pyscroll Adam Faiz via Guix-patches via
2023-11-13  4:14   ` [bug#67131] [PATCH v2 6/7] gnu: Add python-pytmx Adam Faiz via Guix-patches via
2023-11-13  4:15   ` [bug#67131] [PATCH v2 7/7] gnu: Add tuxemon Adam Faiz via Guix-patches via
2023-12-18 15:10 ` [bug#67131] [PATCH v3 1/7] gnu: Add python-neteria Adam Faiz via Guix-patches via
2023-12-18 15:13   ` Adam Faiz via Guix-patches via [this message]
2023-12-18 15:14   ` [bug#67131] [PATCH v3 3/7] gnu: python-pygame: Update to 2.5.2 Adam Faiz via Guix-patches via
2023-12-18 15:16   ` [bug#67131] [PATCH v3 4/7] gnu: Add python-pygame-menu Adam Faiz via Guix-patches via
2023-12-18 15:18   ` [bug#67131] [PATCH v3 5/7] gnu: Add python-pyscroll Adam Faiz via Guix-patches via
2023-12-18 15:19   ` [bug#67131] [PATCH v3 6/7] gnu: Add python-pytmx Adam Faiz via Guix-patches via
2023-12-18 15:21   ` [bug#67131] [PATCH v3 7/7] gnu: Add tuxemon Adam Faiz via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1dc77e86-e0c7-1b06-59a3-d0851ea116c1@disroot.org \
    --to=guix-patches@gnu.org \
    --cc=67131@debbugs.gnu.org \
    --cc=adam.faiz@disroot.org \
    --cc=liliana.prikler@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.