11 buildPythonPackage rec {
12 pname = "pyopengl-accelerate";
17 pname = "PyOpenGL-accelerate";
19 hash = "sha256-KxI2ISc6k59/0uwidUHjmfm11OgV1prgvbG2xwopNoA=";
23 substituteInPlace src/numpy_formathandler.pyx \
24 --replace-fail 'Py_intptr_t' 'npy_intp'
34 env.NIX_CFLAGS_COMPILE = toString [
35 "-Wno-error=int-conversion"
36 "-Wno-error=incompatible-pointer-types"
40 description = "This set of C (Cython) extensions provides acceleration of common operations for slow points in PyOpenGL 3.x";
41 homepage = "https://pyopengl.sourceforge.net/";
42 maintainers = with lib.maintainers; [ laikq ];
43 license = lib.licenses.bsd3;