mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add python-pyopengl-accelerate.
* gnu/packages/python-xyz.scm (gnu/packages/python-xyz.scm): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
c5384ea313
commit
13910d4012
1 changed files with 25 additions and 0 deletions
|
@ -15558,6 +15558,31 @@ (define-public python-pyopengl
|
||||||
library.")
|
library.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public python-pyopengl-accelerate
|
||||||
|
(package
|
||||||
|
(inherit python-pyopengl)
|
||||||
|
(name "python-pyopengl-accelerate")
|
||||||
|
(version "3.1.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "PyOpenGL-accelerate" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"01iggy5jwxv7lxnj51zbmlbhag9wcb7dvrbwgi97i90n0a5m3r8j"))))
|
||||||
|
(inputs
|
||||||
|
`(("mesa" ,mesa)
|
||||||
|
("python-numpy" ,python-numpy))) ; for cython module
|
||||||
|
; numpy_formathandler, thus not propagated
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(delete 'fix-paths))))
|
||||||
|
(synopsis "Acceleration code for PyOpenGL")
|
||||||
|
(description
|
||||||
|
"This is the Cython-coded accelerator module for PyOpenGL.")))
|
||||||
|
|
||||||
(define-public python-rencode
|
(define-public python-rencode
|
||||||
(package
|
(package
|
||||||
(name "python-rencode")
|
(name "python-rencode")
|
||||||
|
|
Loading…
Reference in a new issue