about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2024-03-25 23:39:59 +0100
committerPeder Bergebakken Sundt <pbsds@hotmail.com>2024-03-25 23:39:59 +0100
commit5d9b876d62e613c4efd2d91365f018c9f79f447a (patch)
treee000b869fe65960c20c0ae663abe2961af5bc2b5 /pkgs/development
parent0ef0d1674353136fafb27d87b4261c24eb286162 (diff)
downloadnixlib-5d9b876d62e613c4efd2d91365f018c9f79f447a.tar
nixlib-5d9b876d62e613c4efd2d91365f018c9f79f447a.tar.gz
nixlib-5d9b876d62e613c4efd2d91365f018c9f79f447a.tar.bz2
nixlib-5d9b876d62e613c4efd2d91365f018c9f79f447a.tar.lz
nixlib-5d9b876d62e613c4efd2d91365f018c9f79f447a.tar.xz
nixlib-5d9b876d62e613c4efd2d91365f018c9f79f447a.tar.zst
nixlib-5d9b876d62e613c4efd2d91365f018c9f79f447a.zip
python311Packages.trimesh: 4.2.1 -> 4.2.2
Changelog: https://github.com/mikedh/trimesh/releases/tag/4.2.2
Diffstat (limited to 'pkgs/development')
-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 094e93d0815e..8bdcf2e47ce9 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.2.1";
+  version = "4.2.2";
   format = "pyproject";
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-CAn67M1T48J9y18QL1sjD3R57qfm9FYtK93Tq60WElE=";
+    hash = "sha256-lyscb7YYnT4A7juT1+9CBlb4DoeE1MT46ZPhRJgCa64=";
   };
 
   nativeBuildInputs = [ setuptools ];