| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- easyblock = 'PythonPackage'
- name = 'JupyterNotebook'
- version = '7.2.2'
- homepage = 'https://jupyter.org/'
- description = """The Jupyter Notebook is the original web application for creating and
- sharing computational documents. It offers a simple, streamlined, document-centric experience."""
- toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
- source_urls = ['https://pypi.python.org/packages/source/n/notebook']
- sources = ['notebook-%(version)s.tar.gz']
- checksums = ['2ef07d4220421623ad3fe88118d687bc0450055570cdd160814a59cf3a1c516e']
- builddependencies = [
- ('binutils', '2.42'),
- ('hatch-jupyter-builder', '0.9.1'),
- ]
- dependencies = [
- ('Python', '3.12.3'),
- ('IPython', '8.28.0'),
- ('jupyter-server', '2.14.2'),
- ('JupyterLab', '4.2.5'),
- ]
- download_dep_fail = True
- sanity_pip_check = True
- use_pip = True
- options = {'modulename': 'notebook'}
- sanity_check_paths = {
- 'files': ['bin/jupyter-notebook'],
- 'dirs': ['etc/jupyter', 'share/jupyter'],
- }
- sanity_check_commands = ['jupyter notebook --help']
- modextrapaths = {'EB_ENV_JUPYTER_ROOT': ''}
- moduleclass = 'tools'
|