cppy-1.1.0-GCCcore-11.2.0.eb 796 B

1234567891011121314151617181920212223242526272829
  1. easyblock = 'PythonPackage'
  2. name = 'cppy'
  3. version = '1.1.0'
  4. homepage = "https://github.com/nucleic/cppy"
  5. description = """A small C++ header library which makes it easier to write
  6. Python extension modules. The primary feature is a PyObject smart pointer
  7. which automatically handles reference counting and provides convenience
  8. methods for performing common object operations."""
  9. toolchain = {'name': 'GCCcore', 'version': '11.2.0'}
  10. builddependencies = [('binutils', '2.37')]
  11. dependencies = [
  12. ('Python', '3.9.6'),
  13. ]
  14. source_urls = ['https://github.com/nucleic/cppy/archive/refs/tags/']
  15. sources = ['%(version)s.tar.gz']
  16. checksums = ['40a9672df1ec2d7f0b54f70e574101f42131c0f5e47980769f68085e728a4934']
  17. download_dep_fail = True
  18. sanity_pip_check = True
  19. use_pip = True
  20. moduleclass = 'tools'