Commit a99a07b1 authored by Mario Rodas's avatar Mario Rodas
Browse files

python310Packages.trimesh: set format to "pyproject"

parent 69cc4d0c
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
{ 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