about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2024-06-07 15:48:40 -0400
committerGitHub <noreply@github.com>2024-06-07 15:48:40 -0400
commit0ba25a9e4977cb5550fb3989628404699a2cb439 (patch)
tree1fde3e834ed31333d38be6f7f3d2cb616280d32a
parent62b80cdd0ce762281d27725c78572ec0f221a0ea (diff)
parent6f10f2458fee3bb160175a3d6aa25811e0e6af55 (diff)
Merge pull request #317846 from pbsds/bump-trimesh-1717710644
python311Packages.trimesh: 4.4.0 -> 4.4.1
-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 8758b6c538411..daa6282fb1a3e 100644
--- a/pkgs/development/python-modules/trimesh/default.nix
+++ b/pkgs/development/python-modules/trimesh/default.nix
@@ -11,14 +11,14 @@
 
 buildPythonPackage rec {
   pname = "trimesh";
-  version = "4.4.0";
+  version = "4.4.1";
   format = "pyproject";
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-2vblZxXeLpPdkF6Sb5uxDSPcQVf5ckqnyqtdDiiWPlY=";
+    hash = "sha256-dn/jyGa6dObZqdIWw07MHP4vvz8SmmwR1ZhxcFpZGro=";
   };
 
   nativeBuildInputs = [ setuptools ];