-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathjupyter-archive-3.4.0-GCCcore-13.3.0.eb
More file actions
52 lines (41 loc) · 1.26 KB
/
jupyter-archive-3.4.0-GCCcore-13.3.0.eb
File metadata and controls
52 lines (41 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# This file is part of JSC's public easybuild repository (https://github.com/easybuilders/jsc)
easyblock = 'PythonBundle'
name = 'jupyter-archive'
version = '3.4.0'
homepage = "https://github.com/jupyterlab-contrib/jupyter-archive"
description = """
A Jupyter/Jupyterlab extension to make, download and extract archive files.
"""
toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
builddependencies = [
('binutils', '2.42'),
('hatch-jupyter-builder', '0.9.1'),
]
dependencies = [
('Python', '3.12.3'),
('jupyter-server', '2.15.0'),
]
sanity_pip_check = True
use_pip = True
exts_list = [
('jupyter_archive', '%(version)s', {
'checksums': ['9bf0170e0b45ac83fc46cbf1abc60f40ced5aacf0b5a1dae465eb3bdabaf17e9'],
}),
]
postinstallcmds = [
# override default settings
'mkdir -p %(installdir)s/etc/jupyter/labconfig/ ',
(
'{ cat > %(installdir)s/etc/jupyter/labconfig/default_setting_overrides.json; } << \'EOF\'\n'
'{\n'
' "@hadim/jupyter-archive:archive": {\n'
' "format": "zip",\n'
' "followSymlinks": "true",\n'
' "downloadHidden": "true"\n'
' }\n'
'}\n'
'EOF'
),
]
modextrapaths = {'EB_ENV_JUPYTER_ROOT': ''}
moduleclass = 'tools'