mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
pyglm: init at 2.7.0
This commit is contained in:
parent
994acef06c
commit
cb3eb0d35b
23
pkgs/development/python-modules/pyglm/default.nix
Normal file
23
pkgs/development/python-modules/pyglm/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user