pyglm: init at 2.7.0

This commit is contained in:
sunder 2023-07-21 15:54:10 +03:00 committed by Bjørn Forsman
parent 994acef06c
commit cb3eb0d35b
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "PyGLM";
version = "2.7.0";
src = fetchFromGitHub {
owner = "Zuzu-Typ";
repo = "PyGLM";
rev = "${version}";
hash = "sha256-+On4gqfB9hxuINQdcGcrZyOsphfylUNq7tB2uvjsCkE=";
fetchSubmodules = true;
};
meta = with lib; {
homepage = "https://github.com/Zuzu-Typ/PyGLM";
description = "An OpenGL Mathematics (GLM) library for Python written in C++";
license = licenses.zlib;
maintainers = with maintainers; [ sund3RRR ];
};
}

View file

@ -8980,6 +8980,8 @@ self: super: with self; {
pyglet = callPackage ../development/python-modules/pyglet { };
pyglm = callPackage ../development/python-modules/pyglm { };
pygls = callPackage ../development/python-modules/pygls { };
pygmars = callPackage ../development/python-modules/pygmars { };