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