Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / glad2 / default.nix
blob57ee88c4997a2846f68b7d5fc62bcc1ebaced02b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , jinja2
5 }:
7 buildPythonPackage rec {
8   pname = "glad2";
9   version = "2.0.4";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-7eFjn2nyugjx9JikCnB/NKYJ0k6y6g1sk2RomnmM99A=";
15   };
17   propagatedBuildInputs = [
18     jinja2
19   ];
21   # no python tests
22   doCheck = false;
24   pythonImportsCheck = [ "glad" ];
26   meta = with lib; {
27     description = "Multi-Language GL/GLES/EGL/GLX/WGL Loader-Generator based on the official specifications";
28     homepage = "https://github.com/Dav1dde/glad";
29     license = licenses.mit;
30     maintainers = with maintainers; [ kranzes ];
31   };