1{ lib
2, buildPythonPackage
3, pythonAtLeast
4, fetchPypi
5}:
6
7buildPythonPackage rec {
8 pname = "pyopengl-accelerate";
9 version = "3.1.6";
10 disabled = pythonAtLeast "3.10"; # fails to compile
11
12 src = fetchPypi {
13 pname = "PyOpenGL-accelerate";
14 inherit version;
15 hash = "sha256-rYowAlbsolIoJh3hb3QeUaMPNPHhsc9oNZ9cYtvNzcM=";
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 = "https://pyopengl.sourceforge.net/";
21 maintainers = with lib.maintainers; [ laikq ];
22 license = lib.licenses.bsd3;
23 };
24}