about summary refs log tree commit diff
path: root/pkgs/development/python-modules/trimesh
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2023-10-25 13:12:08 +0200
committerPeder Bergebakken Sundt <pbsds@hotmail.com>2023-10-25 13:12:08 +0200
commit9f494a06d76d65ffc11cd4b49d816987772593c2 (patch)
treee0587bae218ed4f58238f3679e7ef3ef9be9cb23 /pkgs/development/python-modules/trimesh
parent3be4a51a23edfa3a3c4ceabe25328520dd1d9fd4 (diff)
python3Packages.trimesh: 4.0.0 -> 4.0.1
Changelog: https://github.com/mikedh/trimesh/releases/tag/4.0.1
Diffstat (limited to 'pkgs/development/python-modules/trimesh')
-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 ece870d23b03e..3943d185255df 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.0";
+  version = "4.0.1";
   format = "pyproject";
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-zPGD9VdMMSdThd/IV2wLF4NA1lZQy9a0SOyOkUGHK7c=";
+    hash = "sha256-jBVQqYNB8P7E0xkcTH6uYmbBZ/l5P9VLtyyRQxq/fOY=";
   };
 
   nativeBuildInputs = [ setuptools ];