evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / glad / default.nix
blob8c9b40345a73daef5c8dd46293e44c762f51483c
2   buildPythonPackage,
3   fetchPypi,
4   lib,
5 }:
7 buildPythonPackage rec {
8   pname = "glad";
9   version = "0.1.36";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-P7ANv+x65t2+ugTiFUf2fzzPx5X8NFYkUM8/K7Gf28c=";
15   };
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   };