about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2024-05-02 00:09:56 +0200
committerGitHub <noreply@github.com>2024-05-02 00:09:56 +0200
commit8937b370727c9f8030a66449ab3ad0f9b5309069 (patch)
treecfc0c9605df41acb5fae3219d4b8174758f5b431 /pkgs/development/python-modules
parentfc80c868406e5de3e8fd77f3dd8c4436da1a410a (diff)
parent61c1ca5b7f47eac856e1c898202e5438241bc763 (diff)
Merge pull request #308045 from pbsds/bump-trimesh-1714493077
python312Packages.trimesh: 4.3.1 -> 4.3.2
Diffstat (limited to 'pkgs/development/python-modules')
-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 330a0b3ca5d79..bd3a9f8d762d2 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.3.1";
+  version = "4.3.2";
   format = "pyproject";
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-SFD+nZVNb90+UVdWmZwnGEGF21zKhE7mfFPn2HluizE=";
+    hash = "sha256-FFDb0aro3YJe3dVsWn19GzXK1+/Cxj1TXhlWlXfCWRY=";
   };
 
   nativeBuildInputs = [ setuptools ];