jupyter-resource-usage-1.0.0-GCCcore-12.2.0.eb 965 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. easyblock = 'PythonBundle'
  2. name = 'jupyter-resource-usage'
  3. version = "1.0.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': '12.2.0'}
  7. builddependencies = [
  8. ('binutils', '2.39'),
  9. ]
  10. dependencies = [
  11. ('Python', '3.10.8'),
  12. ('IPython', '8.14.0'),
  13. ('jupyter-server', '2.7.0'),
  14. ]
  15. sanity_pip_check = True
  16. use_pip = True
  17. exts_list = [
  18. ('jupyter_resource_usage', version, {
  19. 'checksums': ['74b35b5040c6034e06062f72f8bc5b4a473549e009151be488dd3f61866b854b'],
  20. }),
  21. ]
  22. sanity_check_paths = {
  23. 'files': [],
  24. 'dirs': [
  25. 'lib/python%(pyshortver)s/site-packages/jupyter_resource_usage',
  26. 'share/jupyter'
  27. ],
  28. }
  29. # Add the notebook extension to the search path for jupyter notebooks
  30. modextrapaths = {'JUPYTER_PATH': 'share/jupyter/'}
  31. moduleclass = 'tools'