about summary refs log tree commit diff
path: root/pkgs/development/python-modules/trimesh
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-07-21 09:32:48 +0200
committerGitHub <noreply@github.com>2023-07-21 09:32:48 +0200
commit4059e5bdbba2352ade72f3379706ce779f0159f1 (patch)
tree717d0474da97cf0f287fefde075ce90d69ec1909 /pkgs/development/python-modules/trimesh
parente90c865475d9188b2c1d149aa507d6e2270cc77a (diff)
python311Packages.trimesh: disable on unsupported Python releases
- add changelog to meta
Diffstat (limited to 'pkgs/development/python-modules/trimesh')
-rw-r--r--pkgs/development/python-modules/trimesh/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/trimesh/default.nix b/pkgs/development/python-modules/trimesh/default.nix
index 54c9928ba1bbd..6a60b75cc194c 100644
--- a/pkgs/development/python-modules/trimesh/default.nix
+++ b/pkgs/development/python-modules/trimesh/default.nix
@@ -2,6 +2,7 @@
 , buildPythonPackage
 , fetchPypi
 , setuptools
+, pythonOlder
 , numpy
 , lxml
 }:
@@ -11,6 +12,8 @@ buildPythonPackage rec {
   version = "3.22.5";
   format = "pyproject";
 
+  disabled = pythonOlder "3.7";
+
   src = fetchPypi {
     inherit pname version;
     hash = "sha256-Lk30HShbVSBeiclfxJUkd7W2HfvLsZiUdYqebLI7otw=";
@@ -33,6 +36,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Python library for loading and using triangular meshes";
     homepage = "https://trimsh.org/";
+    changelog = "https://github.com/mikedh/trimesh/releases/tag/${version}";
     license = licenses.mit;
     maintainers = with maintainers; [ gebner ];
   };