{ lib, buildPythonPackage, fetchPypi, numpy }: buildPythonPackage rec { pname = "trimesh"; version = "3.9.7"; src = fetchPypi { inherit pname version; sha256 = "63dd76531a4c6ddd53e00209b971e83d3fbfd9b012f4033a1c4b0f04f1f551e3"; }; propagatedBuildInputs = [ numpy ]; # tests are not included in pypi distributions and would require lots of # optional dependencies doCheck = false; meta = with lib; { description = "Python library for loading and using triangular meshes."; homepage = "https://trimsh.org/"; license = licenses.mit; maintainers = with maintainers; [ gebner ]; }; }