silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / development / python-modules / pyglm / default.nix
blob48831497a082f6097953b1732c31257052692273
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "pyglm";
11   version = "2.7.2-rev1";
12   pyproject = true;
14   src = fetchFromGitHub {
15     owner = "Zuzu-Typ";
16     repo = "PyGLM";
17     rev = "refs/tags/${version}";
18     hash = "sha256-vQ4g2bBr6xV36DYrszcJnaJ8lj1uD1KyUblSL4u+U/E=";
19     fetchSubmodules = true;
20   };
22   nativeBuildInputs = [ setuptools ];
24   nativeCheckInputs = [ pytestCheckHook ];
26   pythonImportsCheck = [ "glm" ];
28   meta = with lib; {
29     homepage = "https://github.com/Zuzu-Typ/PyGLM";
30     description = "OpenGL Mathematics (GLM) library for Python written in C++";
31     changelog = "https://github.com/Zuzu-Typ/PyGLM/releases/tag/${lib.removePrefix "refs/tags/" src.rev}";
32     license = licenses.zlib;
33     maintainers = with maintainers; [ sund3RRR ];
34   };