[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#50505] [PATCH v3 04/12] gnu: Add python-moderngl.
From: |
Daniel Meißner |
Subject: |
[bug#50505] [PATCH v3 04/12] gnu: Add python-moderngl. |
Date: |
Sun, 2 Jan 2022 00:51:47 +0100 |
* gnu/packages/python-xyz.scm (python-moderngl): New variable.
---
gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d8e6fa070e..21cf780338 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19608,6 +19608,31 @@ (define-public python-glcontext
implementation for ModernGL on multiple platforms.")
(license license:expat)))
+(define-public python-moderngl
+ (package
+ (name "python-moderngl")
+ (version "5.6.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "moderngl" version))
+ (sha256
+ (base32
+ "1ysinnyr3rkdisbihdrn1623l3rw45nx8p2j31dgffsykxah8vcc"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ (list python-glcontext))
+ (home-page "https://github.com/moderngl/moderngl")
+ (synopsis "Python wrapper for OpenGL")
+ (description "ModernGL is a python wrapper over OpenGL 3.3+ core that
+simplifies the creation of simple graphics applications like scientific
+simulations, games or user interfaces. Usually, acquiring in-depth knowledge
+of OpenGL requires a steep learning curve. In contrast, ModernGL is easy to
+learn and use, moreover it is capable of rendering with high performance and
+quality, with less code written. The majority of the moderngl code base is
+also written in C++ for high performance.")
+ (license license:expat)))
+
(define-public python-rencode
(package
(name "python-rencode")
--
2.34.0
- [bug#50505] [PATCH v3 00/13] Add python-manim and its missing dependencies, Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 01/12] gnu: Add python-cloup., Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 03/12] gnu: Add python-glcontext., Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 04/12] gnu: Add python-moderngl.,
Daniel Meißner <=
- [bug#50505] [PATCH v3 05/12] gnu: Add python-pyglet., Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 02/12] gnu: Add python-cloup-0.7., Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 07/12] gnu: Add python-screeninfo., Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 10/12] gnu: Add python-mapbox-earcut., Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 11/12] gnu: Add python-screeninfo-0.6., Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 12/12] gnu: Add python-manim 0.9.0., Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 09/12] gnu: Add python-manimpango., Daniel Meißner, 2022/01/01