Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / tinyobjloader-py / default.nix
blob21dc0a5f4ddf25e6ce86ac428f7c7523dd51551c
1 { lib, buildPythonPackage, pybind11, tinyobjloader }:
3 buildPythonPackage rec {
4   pname = "tinyobjloader-py";
5   format = "setuptools";
6   inherit (tinyobjloader) version src;
8   # Build needs headers from ${src}, setting sourceRoot or fetching from pypi won't work.
9   preConfigure = ''
10     cd python
11   '';
13   buildInputs = [ pybind11 ];
15   # No tests are included upstream
16   doCheck = false;
17   pythonImportsCheck = [ "tinyobjloader" ];
19   meta = with lib; tinyobjloader.meta // {
20     description = "Python wrapper for the C++ wavefront .obj loader tinyobjloader";
21   };