1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4}:
5buildPythonPackage rec {
6 pname = "PyGLM";
7 version = "2.7.0";
8
9 src = fetchFromGitHub {
10 owner = "Zuzu-Typ";
11 repo = "PyGLM";
12 rev = "${version}";
13 hash = "sha256-+On4gqfB9hxuINQdcGcrZyOsphfylUNq7tB2uvjsCkE=";
14 fetchSubmodules = true;
15 };
16
17 meta = with lib; {
18 homepage = "https://github.com/Zuzu-Typ/PyGLM";
19 description = "An OpenGL Mathematics (GLM) library for Python written in C++";
20 license = licenses.zlib;
21 maintainers = with maintainers; [ sund3RRR ];
22 };
23}