mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
54 lines
1022 B
Nix
54 lines
1022 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
numpy,
|
|
lxml,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "trimesh";
|
|
version = "4.5.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-FlsS8omMPo3smaLtBexcg+r6L8gVC6jDD4s6YvaTQz8=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ 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://trimesh.org/";
|
|
changelog = "https://github.com/mikedh/trimesh/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
mainProgram = "trimesh";
|
|
maintainers = with maintainers; [
|
|
gebner
|
|
pbsds
|
|
];
|
|
};
|
|
}
|