159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
35 lines
846 B
Nix
35 lines
846 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyglm";
|
|
version = "2.7.1-rev1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Zuzu-Typ";
|
|
repo = "PyGLM";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-MA/NoeKv6yxXL9A36SBqU7GNuPbCKDvxpOkWP8OmED4=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "glm" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Zuzu-Typ/PyGLM";
|
|
description = "OpenGL Mathematics (GLM) library for Python written in C++";
|
|
changelog = "https://github.com/Zuzu-Typ/PyGLM/releases/tag/${lib.removePrefix "refs/tags/" src.rev}";
|
|
license = licenses.zlib;
|
|
maintainers = with maintainers; [ sund3RRR ];
|
|
};
|
|
}
|