diff --git a/pkgs/development/python-modules/trimesh/default.nix b/pkgs/development/python-modules/trimesh/default.nix index 34b53e868a5d..869a58c7441c 100644 --- a/pkgs/development/python-modules/trimesh/default.nix +++ b/pkgs/development/python-modules/trimesh/default.nix @@ -1,6 +1,5 @@ { lib, - python, buildPythonPackage, fetchFromGitHub, setuptools, @@ -9,11 +8,28 @@ numpy, lxml, trimesh, + + # optional deps + colorlog, + manifold3d, + charset-normalizer, + jsonschema, + networkx, + svg-path, + pycollada, + shapely, + xxhash, + rtree, + httpx, + scipy, + pillow, + mapbox-earcut, + embreex, }: buildPythonPackage rec { pname = "trimesh"; - version = "4.6.10"; + version = "4.6.11"; pyproject = true; disabled = pythonOlder "3.8"; @@ -22,14 +38,14 @@ buildPythonPackage rec { owner = "mikedh"; repo = "trimesh"; tag = version; - hash = "sha256-tlIsRZLmnRCqVHcLQOh6Jmne3rZGS95QudnvJHMu1qs="; + hash = "sha256-wltoJsfHl5qtceG96oT5yqLiJl0zeX9IOw+eeKXfJb0="; }; build-system = [ setuptools ]; dependencies = [ numpy ]; - optional-dependencies = with python.pkgs; { + optional-dependencies = { easy = [ colorlog