-
Notifications
You must be signed in to change notification settings - Fork 703
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21802 from lexming/20241107150155_new_pr_jupyterl…
…mod521 {tools}[GCCcore/13.2.0] jupyterlmod v5.2.1
- Loading branch information
Showing
2 changed files
with
44 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
easybuild/easyconfigs/j/jupyterlmod/jupyterlmod-5.2.1-GCCcore-13.2.0.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'jupyterlmod' | ||
version = '5.2.1' | ||
|
||
# This easyconfig installs the notebook and lab extension of Jupyter Lmod | ||
|
||
homepage = 'https://github.com/cmd-ntrf/jupyter-lmod' | ||
description = """Jupyter interactive notebook server extension that allows users to interact with | ||
environment modules before launching kernels. The extension uses Lmod's Python | ||
interface to accomplish module-related tasks like loading, unloading, saving | ||
collections, etc.""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '13.2.0'} | ||
|
||
builddependencies = [ | ||
('binutils', '2.40'), | ||
] | ||
|
||
dependencies = [ | ||
('Python', '3.11.5'), | ||
('JupyterNotebook', '7.2.0'), | ||
] | ||
|
||
use_pip = True | ||
|
||
exts_list = [ | ||
(name, version, { | ||
'sources': ['%(name)s-%(version)s-py3-none-any.whl'], | ||
'checksums': ['6f9c94d80b813792a6b63aeff5f2672f7d485ce43a7fd5bb7f6fce1c0907cad5'], | ||
}), | ||
] | ||
|
||
sanity_pip_check = True | ||
|
||
sanity_check_paths = { | ||
'files': [], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages', 'share/jupyter'], | ||
} | ||
|
||
modextrapaths = {'EB_ENV_JUPYTER_ROOT': ''} | ||
|
||
moduleclass = 'tools' |