diff options
Diffstat (limited to 'gnu/packages/python-graphics.scm')
-rw-r--r-- | gnu/packages/python-graphics.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/python-graphics.scm b/gnu/packages/python-graphics.scm new file mode 100644 index 0000000000..ef981bd8d7 --- /dev/null +++ b/gnu/packages/python-graphics.scm @@ -0,0 +1,28 @@ +;;; GNU Guix --- Functional package management for GNU + +(define-module (gnu packages python-graphics) + #:use-module ((guix licenses) #:prefix license:) + #:use-module ((guix build-system python) #:select (pypi-uri)) + #:use-module (guix build-system pyproject) + #:use-module (guix download) + #:use-module (guix gexp) + #:use-module (guix packages) + #:use-module (gnu packages) + #:use-module (gnu packages check) + #:use-module (gnu packages python-build) + #:use-module (gnu packages python-xyz)) + +;;; Commentary: +;;; +;;; Python modules which are meant to be used in GUI creation or mainly are +;;; bindings to low level libraries such as Glue, Mesa, OpenGL, Xorg etc. +;;; +;;; Please: Try to add new module packages in alphabetic order. +;;; +;;; Code: + + +;;; +;;; Avoid adding new packages to the end of this file. To reduce the chances +;;; of a merge conflict, place them above in alphabetical order. +;;; |