Merge pull request #320946 from autra/package_mathutils

python3Packages.mathutils: init at 3.3.0
This commit is contained in:
kirillrdy
2024-06-22 06:50:56 +00:00
committed by GitHub
3 changed files with 41 additions and 0 deletions
+6
View File
@@ -1977,6 +1977,12 @@
githubId = 12958979;
name = "Mika Naylor";
};
autra = {
email = "augustin.trancart@gmail.com";
github = "autra";
githubId = 1576598;
name = "Augustin Trancart";
};
autrimpo = {
email = "michal@koutensky.net";
github = "autrimpo";
@@ -0,0 +1,33 @@
{ lib
, buildPythonPackage
, fetchFromGitLab
# build-system
, setuptools
}:
buildPythonPackage rec {
pname = "mathutils";
version = "3.3.0";
pyproject = true;
src = fetchFromGitLab {
owner = "ideasman42";
repo = "blender-mathutils";
rev = "d63d623a9e580a567eb6acb7dbed7cad0e4f8c28";
hash = "sha256-c28kt2ADw4wHNLN0CBPcJU/kqm6g679QRaICk4WwaBc=";
};
build-system = [
setuptools
];
pythonImportsCheck = [ "mathutils" ];
meta = with lib; {
description = "A general math utilities library providing Matrix, Vector, Quaternion, Euler and Color classes, written in C for speed";
homepage = "https://gitlab.com/ideasman42/blender-mathutils";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ autra ];
};
}
+2
View File
@@ -7297,6 +7297,8 @@ self: super: with self; {
mathlibtools = callPackage ../development/python-modules/mathlibtools { };
mathutils = callPackage ../development/python-modules/mathutils { };
matlink-gpapi = callPackage ../development/python-modules/matlink-gpapi { };
matplotlib = callPackage ../development/python-modules/matplotlib {