about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2023-11-25 01:56:39 +0100
committerGitHub <noreply@github.com>2023-11-25 01:56:39 +0100
commit9a17fe4f337f6a61468eff38d92baed8bc70f3f6 (patch)
tree69d4881146b7988c09cdb520917ae5f6d3dd54d7 /pkgs
parent74afca48be6193f4eb8b8569933cefcc39109089 (diff)
parentaa95d94e795c44b18635985fcb8fa7f8d4360a27 (diff)
Merge pull request #269717 from r-ryantm/auto-update/python311Packages.trimesh
python311Packages.trimesh: 4.0.4 -> 4.0.5
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 6a38fed9c492b..477fb3b97438c 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.0.4";
+  version = "4.0.5";
   format = "pyproject";
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-3XpncG6ISKQU+hqJpvck82s0BYgvYpNGn3zcdWkB5Ps=";
+    hash = "sha256-ub/P7AO3CrTSHwVd8atz6HQN0LyP1WSCc+74/sds3fk=";
   };
 
   nativeBuildInputs = [ setuptools ];