Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions easybuild/easyconfigs/a/aiohttp/aiohttp-3.9.5-GCCcore-13.2.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
easyblock = 'PythonBundle'

name = 'aiohttp'
version = '3.9.5'

homepage = 'https://github.com/aio-libs/aiohttp'
description = "Asynchronous HTTP client/server framework for asyncio and Python."

toolchain = {'name': 'GCCcore', 'version': '13.2.0'}

builddependencies = [
('binutils', '2.40'),
('poetry', '1.6.1'),
]

dependencies = [
('Python', '3.11.5'),
('Python-bundle-PyPI', '2023.10'),
]

use_pip = True

# aioredis and aiosignal do not depend on aiohttp, but are commonly used together and share dependencies
exts_list = [
('multidict', '6.0.5', {
'checksums': ['f7e301075edaf50500f0b341543c41194d8df3ae5caf4702f2095f3ca73dd8da'],
}),
('expandvars', '0.12.0', {
'checksums': ['7d1adfa55728cf4b5d812ece3d087703faea953e0c0a1a78415de9df5024d844'],
}),
('yarl', '1.9.4', {
'checksums': ['566db86717cf8080b99b58b083b773a908ae40f06681e87e589a976faf8246bf'],
}),
('frozenlist', '1.4.1', {
'checksums': ['c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b'],
}),
('async-timeout', '4.0.3', {
'checksums': ['4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f'],
}),
('aiosignal', '1.3.1', {
'checksums': ['54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc'],
}),
('aiohappyeyeballs', '2.3.2', {
'checksums': ['77e15a733090547a1f5369a1287ddfc944bd30df0eb8993f585259c34b405f4e'],
}),
(name, version, {
'checksums': ['edea7d15772ceeb29db4aff55e482d4bcfb6ae160ce144f2682de02f6d693551'],
}),
]

sanity_pip_check = True

moduleclass = 'lib'
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
easyblock = 'Bundle'

name = 'Jupyter-bundle'
version = '20240522'

homepage = "https://jupyter.org/"

description = """
This bundle collects a range of Jupyter interfaces (Lab, Notebook and nbclassic),
extensions (Jupyter Server Proxy, Jupyter Resource Monitor, Jupyter Lmod) and
the JupyterHub.
"""

toolchain = {'name': 'GCCcore', 'version': '13.2.0'}

dependencies = [
('JupyterHub', '4.1.5'),
('JupyterLab', '4.2.0'),
('JupyterNotebook', '7.2.0'),
('nbclassic', '1.0.0'),
('jupyter-server-proxy', '4.1.2'),
# ('jupyterlmod', '5.0.0'), -- not ready yet, waiting for https://github.com/cmd-ntrf/jupyter-lmod/pull/70
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@lexming assuming the tests are successful and this is merged as is, you'll come back to this later? or should we simply hold off merging this for now?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can merge the bundle without jupyterlmod for the moment. I left the comment so that people know why it is not there compared to the previous bundle. I'll make another PR whenever it is released.

('jupyter-resource-usage', '1.0.2'),
]

moduleclass = 'tools'
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
easyblock = 'PythonBundle'

name = 'jupyter-resource-usage'
version = "1.0.2"

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.2.0'}

builddependencies = [
('binutils', '2.40'),
('hatch-jupyter-builder', '0.9.1'),
]
dependencies = [
('Python', '3.11.5'),
('IPython', '8.17.2'),
('jupyter-server', '2.14.0'),
]

sanity_pip_check = True
use_pip = True

exts_list = [
('jupyter_resource_usage', version, {
'checksums': ['20babc5a63fd53724b12e50b9046ca07784fb56004c39d0442990116fb925a4b'],
}),
]

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'
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
easyblock = 'PythonBundle'

name = 'jupyter-server-proxy'
version = '4.1.2'

homepage = 'https://github.com/jupyterhub/jupyter-server-proxy'
description = """Jupyter Server Proxy lets you run arbitrary external processes
(such as RStudio, Shiny Server, Syncthing, PostgreSQL, Code Server, etc)
alongside your notebook server and provide authenticated web access to them
using a path like /rstudio next to others like /lab. Alongside the python
package that provides the main functionality, the JupyterLab extension
(@jupyterlab/server-proxy) provides buttons in the JupyterLab launcher window
to get to RStudio for example."""

toolchain = {'name': 'GCCcore', 'version': '13.2.0'}

builddependencies = [
('binutils', '2.40'),
('hatch-jupyter-builder', '0.9.1'),
]
dependencies = [
('Python', '3.11.5'),
('IPython', '8.17.2'),
('jupyter-server', '2.14.0'),
('OpenSSL', '1.1', '', SYSTEM),
('aiohttp', '3.9.5'),
]

sanity_pip_check = True
use_pip = True

exts_list = [
('simpervisor', '1.0.0', {
'checksums': ['7eb87ca86d5e276976f5bb0290975a05d452c6a7b7f58062daea7d8369c823c1'],
}),
('jupyter_server_proxy', version, {
'checksums': ['6fd8ce88a0100e637b48f1d3aa32f09672bcb2813dc057d70567f0a40b1237f5'],
}),
]

modextrapaths = {'EB_ENV_JUPYTER_ROOT': ''}

moduleclass = 'tools'
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
easyblock = 'PythonPackage'

name = 'nbclassic'
version = "1.0.0"

homepage = 'https://jupyter.org/'
description = """NbClassic provides a backwards compatible Jupyter Notebook interface
that you can install side-by-side with the latest versions: That way, you can fearlessly
upgrade without worrying about your classic extensions and customizations breaking."""

toolchain = {'name': 'GCCcore', 'version': '13.2.0'}

builddependencies = [
('binutils', '2.40'),
('maturin', '1.3.1'),
]
dependencies = [
('Python', '3.11.5'),
('jupyter-server', '2.14.0'),
]

sources = [SOURCE_TAR_GZ]
patches = ['nbclassic-1.0.0_fix_setup_version.patch']
checksums = [
{'nbclassic-1.0.0.tar.gz': '0ae11eb2319455d805596bf320336cda9554b41d99ab9a3c31bf8180bffa30e3'},
{'nbclassic-1.0.0_fix_setup_version.patch': 'c26d91ac1d0cea2b361b2619076acdaf5fcd5ff2363d9e5f5e1bd737b4b50736'},
]

download_dep_fail = True
sanity_pip_check = True
use_pip = True

local_binaries = [
'jupyter-nbclassic',
'jupyter-nbclassic-bundlerextension',
'jupyter-nbclassic-extension',
'jupyter-nbclassic-serverextension',
]
sanity_check_paths = {
'files': ['bin/%s' % x for x in local_binaries],
'dirs': [],
}

sanity_check_commands = ['jupyter nbclassic --help']

modextrapaths = {
'JUPYTER_CONFIG_PATH': 'etc/jupyter',
'JUPYTER_PATH': 'share/jupyter',
}

moduleclass = 'tools'