python3Packages.glad: init 0.1.36
This commit is contained in:
parent
54e12e9953
commit
2928efa640
2 changed files with 20 additions and 0 deletions
18
pkgs/development/python-modules/glad/default.nix
Normal file
18
pkgs/development/python-modules/glad/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ buildPythonPackage, fetchPypi, lib }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "glad";
|
||||
version = "0.1.36";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-P7ANv+x65t2+ugTiFUf2fzzPx5X8NFYkUM8/K7Gf28c=";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Multi-Language Vulkan/GL/GLES/EGL/GLX/WGL Loader-Generator based on the official specs";
|
||||
homepage = "https://github.com/Dav1dde/glad";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ superherointj ];
|
||||
};
|
||||
}
|
|
@ -3375,6 +3375,8 @@ in {
|
|||
|
||||
git-sweep = callPackage ../development/python-modules/git-sweep { };
|
||||
|
||||
glad = callPackage ../development/python-modules/glad { };
|
||||
|
||||
glances-api = callPackage ../development/python-modules/glances-api { };
|
||||
|
||||
glasgow = callPackage ../development/python-modules/glasgow { };
|
||||
|
|
Loading…
Reference in a new issue