about summary refs log tree commit diff
path: root/pkgs/development/python-modules/trimesh
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-03-25 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-03-25 04:20:00 +0000
commita99a07b1a611b863c03b8db99a5d292f1fd100a7 (patch)
tree873b494fbc9eb72ccd65ebc2c806cb2857923c86 /pkgs/development/python-modules/trimesh
parent69cc4d0ce8c5b6fc8d2401557aa436363cab5b5b (diff)
python310Packages.trimesh: set format to "pyproject"
Diffstat (limited to 'pkgs/development/python-modules/trimesh')
-rw-r--r--pkgs/development/python-modules/trimesh/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/trimesh/default.nix b/pkgs/development/python-modules/trimesh/default.nix
index 8dbae7d45e731..bc14617c00826 100644
--- a/pkgs/development/python-modules/trimesh/default.nix
+++ b/pkgs/development/python-modules/trimesh/default.nix
@@ -1,18 +1,22 @@
 { lib
 , buildPythonPackage
 , fetchPypi
+, setuptools
 , numpy
 }:
 
 buildPythonPackage rec {
   pname = "trimesh";
   version = "3.21.2";
+  format = "pyproject";
 
   src = fetchPypi {
     inherit pname version;
     hash = "sha256-VRPE+1QLKGy5W99ia5BuPNtmH/eoXulApS8n8SdQSaQ=";
   };
 
+  nativeBuildInputs = [ setuptools ];
+
   propagatedBuildInputs = [ numpy ];
 
   # tests are not included in pypi distributions and would require lots of