at 24.05-pre 35 lines 713 B view raw
1{ lib 2, buildPythonPackage 3, pythonAtLeast 4, fetchPypi 5, cython_3 6, numpy 7, setuptools 8, wheel 9}: 10 11buildPythonPackage rec { 12 pname = "pyopengl-accelerate"; 13 version = "3.1.7"; 14 format = "pyproject"; 15 16 src = fetchPypi { 17 pname = "PyOpenGL-accelerate"; 18 inherit version; 19 hash = "sha256-KxI2ISc6k59/0uwidUHjmfm11OgV1prgvbG2xwopNoA="; 20 }; 21 22 nativeBuildInputs = [ 23 cython_3 24 numpy 25 setuptools 26 wheel 27 ]; 28 29 meta = { 30 description = "This set of C (Cython) extensions provides acceleration of common operations for slow points in PyOpenGL 3.x"; 31 homepage = "https://pyopengl.sourceforge.net/"; 32 maintainers = with lib.maintainers; [ laikq ]; 33 license = lib.licenses.bsd3; 34 }; 35}