25 lines
629 B
Nix
25 lines
629 B
Nix
{ lib, buildPythonPackage, fetchPypi, numpy }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "trimesh";
|
|
version = "3.9.10";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "7ed243bc818f7a9a021d8dd39f69ae7ed366dfd9582b13d686e1b1e8c8326bcf";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|