jupyter-resource-usage-1.1.0-GCCcore-13.3.0.eb 999 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. easyblock = 'PythonBundle'
  2. name = 'jupyter-resource-usage'
  3. version = "1.1.0"
  4. homepage = 'https://github.com/jupyter-server/jupyter-resource-usage'
  5. description = "Jupyter Notebook Extension for monitoring your own Resource Usage (memory and/or CPU)"
  6. toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
  7. builddependencies = [
  8. ('binutils', '2.42'),
  9. ('hatch-jupyter-builder', '0.9.1'),
  10. ]
  11. dependencies = [
  12. ('Python', '3.12.3'),
  13. ('IPython', '8.28.0'),
  14. ('jupyter-server', '2.14.2'),
  15. ]
  16. sanity_pip_check = True
  17. use_pip = True
  18. exts_list = [
  19. ('jupyter_resource_usage', version, {
  20. 'checksums': ['622c5d57ea713401d8c0143189cf31ad6aadebd49a2a044927a422600f9f7e91'],
  21. }),
  22. ]
  23. sanity_check_paths = {
  24. 'files': [],
  25. 'dirs': [
  26. 'lib/python%(pyshortver)s/site-packages/jupyter_resource_usage',
  27. 'share/jupyter'
  28. ],
  29. }
  30. # Add the notebook extension to the search path for jupyter notebooks
  31. modextrapaths = {'EB_ENV_JUPYTER_ROOT': ''}
  32. moduleclass = 'tools'