depot/third_party/nixpkgs/pkgs/development/python-modules/trimesh/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

39 lines
883 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, numpy
, lxml
}:
buildPythonPackage rec {
pname = "trimesh";
version = "3.22.3";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-PrXqBYOEFCXIZsihhImh1swbGFRCoyTGl82dkfBE7aU=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ numpy ];
nativeCheckInputs = [ lxml ];
checkPhase = ''
# Disable test_load because requires loading models which aren't part of the tarball
substituteInPlace tests/test_minimal.py --replace "test_load" "disable_test_load"
python tests/test_minimal.py
'';
pythonImportsCheck = [ "trimesh" ];
meta = with lib; {
description = "Python library for loading and using triangular meshes";
homepage = "https://trimsh.org/";
license = licenses.mit;
maintainers = with maintainers; [ gebner ];
};
}