1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
setuptools,
glfw,
mesa,
moderngl,
numpy,
pillow,
pygame,
pyglet,
pyqt5,
pyrr,
pysdl2,
pyside2,
pythonOlder,
scipy,
trimesh,
}:
buildPythonPackage rec {
pname = "moderngl-window";
version = "2.4.6";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "moderngl";
repo = "moderngl_window";
rev = "refs/tags/${version}";
hash = "sha256-zTygSXU/vQZaFCuHbRBpO9/BYYA2UOid+wvhyc2bWMI=";
};
pythonRelaxDeps = [ "pillow" ];
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
numpy
moderngl
pyglet
pillow
pyrr
];
passthru.optional-dependencies = {
trimesh = [
trimesh
scipy
];
glfw = [ glfw ];
pygame = [ pygame ];
PySDL2 = [ pysdl2 ];
PySide2 = [ pyside2 ];
pyqt5 = [ pyqt5 ];
};
# Tests need a display to run.
doCheck = false;
pythonImportsCheck = [ "moderngl_window" ];
meta = with lib; {
description = "Cross platform helper library for ModernGL making window creation and resource loading simple";
homepage = "https://github.com/moderngl/moderngl-window";
changelog = "https://github.com/moderngl/moderngl-window/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ c0deaddict ];
inherit (mesa.meta) platforms;
broken = stdenv.hostPlatform.isDarwin;
};
}
|