depot/third_party/nixpkgs/pkgs/development/python-modules/pyglm/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

23 lines
550 B
Nix

{ 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 ];
};
}