python3Packages.glad2: init at 2.0.3
This commit is contained in:
parent
27e517373d
commit
18cc1ed2dc
28
pkgs/development/python-modules/glad2/default.nix
Normal file
28
pkgs/development/python-modules/glad2/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib
|
||||
, python3
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonPackage rec {
|
||||
pname = "glad2";
|
||||
version = "2.0.4";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-7eFjn2nyugjx9JikCnB/NKYJ0k6y6g1sk2RomnmM99A=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
jinja2
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "glad" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Multi-Language GL/GLES/EGL/GLX/WGL Loader-Generator based on the official specifications";
|
||||
homepage = "https://pypi.org/project/glad2";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ kranzes ];
|
||||
};
|
||||
}
|
@ -3939,6 +3939,8 @@ self: super: with self; {
|
||||
|
||||
glad = callPackage ../development/python-modules/glad { };
|
||||
|
||||
glad2 = callPackage ../development/python-modules/glad2 { };
|
||||
|
||||
glances-api = callPackage ../development/python-modules/glances-api { };
|
||||
|
||||
glcontext = callPackage ../development/python-modules/glcontext { };
|
||||
|
Loading…
Reference in New Issue
Block a user