1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "pyopengl-accelerate";
8 version = "3.1.5";
9
10 src = fetchPypi {
11 pname = "PyOpenGL-accelerate";
12 inherit version;
13 sha256 = "01iggy5jwxv7lxnj51zbmlbhag9wcb7dvrbwgi97i90n0a5m3r8j";
14 };
15
16 meta = {
17 description = "This set of C (Cython) extensions provides acceleration of common operations for slow points in PyOpenGL 3.x";
18 homepage = "http://pyopengl.sourceforge.net/";
19 maintainers = with lib.maintainers; [ laikq ];
20 license = lib.licenses.bsd3;
21 };
22}