45 lines
974 B
Nix
45 lines
974 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, numpy
|
|
, lxml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "trimesh";
|
|
version = "4.3.1";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-SFD+nZVNb90+UVdWmZwnGEGF21zKhE7mfFPn2HluizE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
nativeCheckInputs = [ lxml pytestCheckHook ];
|
|
|
|
disabledTests = [
|
|
# requires loading models which aren't part of the Pypi tarball
|
|
"test_load"
|
|
];
|
|
|
|
pytestFlagsArray = [ "tests/test_minimal.py" ];
|
|
|
|
pythonImportsCheck = [ "trimesh" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for loading and using triangular meshes";
|
|
homepage = "https://trimsh.org/";
|
|
changelog = "https://github.com/mikedh/trimesh/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ gebner pbsds ];
|
|
};
|
|
}
|