summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyglm/default.nix
blob: b98fee9d38dbc2ea7ff5a8761a835bd811e41f05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 ];
  };
}