Issue description
My goal is to create a wrapper to the python default file type.
For that I created a C++ class (with no base class) and I want to expose it as a subclass of file. Which I cannot do as file isn't itself exported by pybind11.
Is there a way to support this pattern with this library (I couldn't find this workflow in the doc) ?