mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: Add python2-pyopengl.
* gnu/packages/python.scm (python2-pyopengl): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
21ab594917
commit
f817b4d903
1 changed files with 23 additions and 0 deletions
|
@ -42,6 +42,7 @@
|
||||||
;;; Copyright © 2017 José Miguel Sánchez García <jmi2k@openmailbox.org>
|
;;; Copyright © 2017 José Miguel Sánchez García <jmi2k@openmailbox.org>
|
||||||
;;; Copyright © 2017 Roel Janssen <roel@gnu.org>
|
;;; Copyright © 2017 Roel Janssen <roel@gnu.org>
|
||||||
;;; Copyright © 2017 Kei Kebreau <kei@openmailbox.org>
|
;;; Copyright © 2017 Kei Kebreau <kei@openmailbox.org>
|
||||||
|
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -15449,3 +15450,25 @@ (define-public python-regex
|
||||||
|
|
||||||
(define-public python2-regex
|
(define-public python2-regex
|
||||||
(package-with-python2 python-regex))
|
(package-with-python2 python-regex))
|
||||||
|
|
||||||
|
(define-public python2-pyopengl
|
||||||
|
(package
|
||||||
|
(name "python2-pyopengl")
|
||||||
|
(version "3.1.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "PyOpenGL" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1byxjj6a8rwzhxhjqlc588zdad2qwxdd7vlam2653ylll31waiwv"))))
|
||||||
|
(arguments
|
||||||
|
`(#:python ,python-2))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(home-page "http://pyopengl.sourceforge.net")
|
||||||
|
(synopsis "Standard OpenGL bindings for Python")
|
||||||
|
(description
|
||||||
|
"PyOpenGL is the most common cross platform Python binding to OpenGL and
|
||||||
|
related APIs. The binding is created using the standard @code{ctypes}
|
||||||
|
library.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
Loading…
Reference in a new issue