1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 cython,
6 numpy,
7 setuptools,
8 wheel,
9}:
10
11buildPythonPackage rec {
12 pname = "pyopengl-accelerate";
13 version = "3.1.10";
14 format = "pyproject";
15
16 src = fetchPypi {
17 pname = "pyopengl_accelerate";
18 inherit version;
19 hash = "sha256-gnUcg/Cm9zK4tZI5kO3CRB04F2qYdWsXGOjWxDefWnE=";
20 };
21
22 build-system = [
23 cython
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}