The build requirements seems to be downloaded by the install process, but not actually found when building;
git clone https://github.com/pybind/cmake_example.git
cd cmake_example
pip3 install .
...
Traceback (most recent call last):
File "/private/var/folders/.../overlay/bin/cmake", line 5, in <module>
from cmake import cmake
ModuleNotFoundError: No module named 'cmake'
If you manually install using pip3 install cmake it works after that.
The build requirements seems to be downloaded by the install process, but not actually found when building;
git clone https://github.com/pybind/cmake_example.gitcd cmake_examplepip3 install ....
If you manually install using
pip3 install cmakeit works after that.