linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / tinyobjloader-py / default.nix
blob3c36dded5ee7a0fb901a9f539f611e563428b375
1 { lib, buildPythonPackage, pybind11, tinyobjloader }:
3 buildPythonPackage rec {
4   pname = "tinyobjloader-py";
5   inherit (tinyobjloader) version src;
7   # Build needs headers from ${src}, setting sourceRoot or fetching from pypi won't work.
8   preConfigure = ''
9     cd python
10   '';
12   buildInputs = [ pybind11 ];
14   # No tests are included upstream
15   doCheck = false;
16   pythonImportsCheck = [ "tinyobjloader" ];
18   meta = with lib; tinyobjloader.meta // {
19     description = "Python wrapper for the C++ wavefront .obj loader tinyobjloader";
20   };