pybind11-2.6.0-GCCcore-10.2.0.eb 704 B

1234567891011121314151617181920212223
  1. name = 'pybind11'
  2. version = '2.6.0'
  3. homepage = 'https://pybind11.readthedocs.io'
  4. description = """pybind11 is a lightweight header-only library that exposes C++ types in Python and vice versa,
  5. mainly to create Python bindings of existing C++ code."""
  6. toolchain = {'name': 'GCCcore', 'version': '10.2.0'}
  7. source_urls = ['https://github.com/pybind/pybind11/archive/']
  8. sources = ['v%(version)s.tar.gz']
  9. checksums = ['90b705137b69ee3b5fc655eaca66d0dc9862ea1759226f7ccd3098425ae69571']
  10. builddependencies = [
  11. ('binutils', '2.35'),
  12. ('CMake', '3.18.4'),
  13. ('Eigen', '3.3.8'),
  14. ]
  15. dependencies = [('Python', '3.8.6')]
  16. configopts = "-DPYTHON_EXECUTABLE=$EBROOTPYTHON/bin/python"
  17. moduleclass = 'lib'