Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / glad / default.nix
blobdef3766765e89a5a0343928c4f8fd487edea7922
1 { buildPythonPackage, fetchPypi, lib }:
3 buildPythonPackage rec {
4   pname = "glad";
5   version = "0.1.36";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     hash = "sha256-P7ANv+x65t2+ugTiFUf2fzzPx5X8NFYkUM8/K7Gf28c=";
11   };
13   meta = with lib; {
14     description = "Multi-Language Vulkan/GL/GLES/EGL/GLX/WGL Loader-Generator based on the official specs";
15     mainProgram = "glad";
16     homepage = "https://github.com/Dav1dde/glad";
17     license = licenses.mit;
18     maintainers = with maintainers; [ ];
19   };