forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
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 easybuilders#20876 from lexming/20240620163758_new…
…_pr_jupyter-vscode-proxy06 {tools}[GCCcore/12.3.0,system/system] jupyter-vscode-proxy v0.6, code-server v4.90.2
- Loading branch information
Showing
2 changed files
with
52 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name = 'code-server' | ||
version = '4.90.2' | ||
|
||
homepage = 'https://github.com/coder/code-server' | ||
description = """Run VS Code on any machine anywhere and access it in the browser.""" | ||
|
||
toolchain = SYSTEM | ||
|
||
source_urls = ['https://github.com/coder/code-server/releases/download/v%(version)s/'] | ||
sources = ['code-server-%(version)s-linux-%(mapped_arch)s.tar.gz'] | ||
checksums = [ | ||
{ | ||
'code-server-%(version)s-linux-amd64.tar.gz': | ||
'c66b57759e41c66c28577eaefa4cce106f7b5ad5fb3ab394baea5eaa5b604cce', | ||
'code-server-%(version)s-linux-arm64.tar.gz': | ||
'12e51e3575069c438aa4dee93bddfc221e7850192a7745b84fc77b420cedf205', | ||
} | ||
] | ||
|
||
moduleclass = 'tools' |
32 changes: 32 additions & 0 deletions
32
easybuild/easyconfigs/j/jupyter-vscode-proxy/jupyter-vscode-proxy-0.6-GCCcore-12.3.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,32 @@ | ||
easyblock = "PythonBundle" | ||
|
||
name = 'jupyter-vscode-proxy' | ||
version = '0.6' | ||
|
||
homepage = 'https://github.com/betatim/vscode-binder' | ||
description = "VS Code extension for Jupyter" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '12.3.0'} | ||
|
||
builddependencies = [ | ||
('binutils', '2.40'), | ||
] | ||
|
||
dependencies = [ | ||
('Python', '3.11.3'), | ||
('jupyter-server-proxy', '4.0.0'), | ||
('code-server', '4.90.2', '', SYSTEM), | ||
] | ||
|
||
use_pip = True | ||
|
||
exts_list = [ | ||
('jupyter_vscode_proxy', version, { | ||
'sources': ['%(name)s-%(version)s-py3-none-any.whl'], | ||
'checksums': ['c72037d1234f0cd489ecb0ab40ec8b150fc9cd7006b4d9c7036200e76689da78'], | ||
}), | ||
] | ||
|
||
sanity_pip_check = True | ||
|
||
moduleclass = 'tools' |