1{
2 buildPythonPackage,
3 fetchPypi,
4 lib,
5}:
6
7buildPythonPackage rec {
8 pname = "glad";
9 version = "0.1.36";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-P7ANv+x65t2+ugTiFUf2fzzPx5X8NFYkUM8/K7Gf28c=";
15 };
16
17 meta = with lib; {
18 description = "Multi-Language Vulkan/GL/GLES/EGL/GLX/WGL Loader-Generator based on the official specs";
19 mainProgram = "glad";
20 homepage = "https://github.com/Dav1dde/glad";
21 license = licenses.mit;
22 maintainers = [ ];
23 };
24}