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