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