{ lib, buildPythonPackage, fetchPypi, numpy }: buildPythonPackage rec { pname = "trimesh"; version = "3.9.20"; src = fetchPypi { inherit pname version; sha256 = "476173507224bd07febc94070d30e5d704f541b48cd2db4c3bc2fe562498e22c"; }; 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 ]; }; }