| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- easyblock = 'PythonBundle'
- name = 'jupyter-resource-usage'
- version = "1.1.0"
- homepage = 'https://github.com/jupyter-server/jupyter-resource-usage'
- description = "Jupyter Notebook Extension for monitoring your own Resource Usage (memory and/or CPU)"
- toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
- builddependencies = [
- ('binutils', '2.42'),
- ('hatch-jupyter-builder', '0.9.1'),
- ]
- dependencies = [
- ('Python', '3.12.3'),
- ('IPython', '8.28.0'),
- ('jupyter-server', '2.14.2'),
- ]
- sanity_pip_check = True
- use_pip = True
- exts_list = [
- ('jupyter_resource_usage', version, {
- 'checksums': ['622c5d57ea713401d8c0143189cf31ad6aadebd49a2a044927a422600f9f7e91'],
- }),
- ]
- sanity_check_paths = {
- 'files': [],
- 'dirs': [
- 'lib/python%(pyshortver)s/site-packages/jupyter_resource_usage',
- 'share/jupyter'
- ],
- }
- # Add the notebook extension to the search path for jupyter notebooks
- modextrapaths = {'EB_ENV_JUPYTER_ROOT': ''}
- moduleclass = 'tools'
|