about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2024-03-01 12:33:10 +0100
committerGitHub <noreply@github.com>2024-03-01 12:33:10 +0100
commit201eeb4018267d624522019ff47c5afc38ddd4a3 (patch)
tree574e3498ebd4b0a983cb4bc8a68e668f392305ef /pkgs
parent861b56407f95bc10a2747c4a16c60fba73819e4b (diff)
parentb5cb334ae72ae72c53f9d9a9a3f735805700d3d1 (diff)
Merge pull request #292502 from r-ryantm/auto-update/python311Packages.trimesh
python311Packages.trimesh: 4.1.6 -> 4.1.7
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/trimesh/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/trimesh/default.nix b/pkgs/development/python-modules/trimesh/default.nix
index de16dec6240bf..c3f43507af336 100644
--- a/pkgs/development/python-modules/trimesh/default.nix
+++ b/pkgs/development/python-modules/trimesh/default.nix
@@ -10,14 +10,14 @@
 
 buildPythonPackage rec {
   pname = "trimesh";
-  version = "4.1.6";
+  version = "4.1.7";
   format = "pyproject";
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-ps99+3JDyKuB25G1hho6MClDFp48N/dBarHZUpcZK30=";
+    hash = "sha256-bO7fIrk+ScSvz1iwLMdPN+fK9T5VhIEitxdZRnLBSxA=";
   };
 
   nativeBuildInputs = [ setuptools ];