Skip to content

Commit

Permalink
Add checksum to jupyterlmod and remove unnecessary comment. Shorten l…
Browse files Browse the repository at this point in the history
…ine in jupyter-server. Add binutils to jupyterlmod as builddep.
  • Loading branch information
casparvl committed Oct 18, 2022
1 parent e03a46b commit f3a5278
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ name = 'jupyter-server'
version = '1.21.0'

homepage = 'https://github.com/jupyter-server/jupyter-server'
description = """The Jupyter Server provides the backend (i.e. the core services, APIs, and REST endpoints) for Jupyter web applications like Jupyter notebook, JupyterLab, and Voila."""
description = """The Jupyter Server provides the backend (i.e. the core services, APIs, and REST endpoints)
for Jupyter web applications like Jupyter notebook, JupyterLab, and Voila."""

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ description = """Jupyter interactive notebook server extension that allows user

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

#source_urls = [PYPI_SOURCE]
#sources = [SOURCE_TAR_GZ]
#checksums = ['da769078650766b1fca6ef1e673d15ddd6ce7428001e05cc364cba246a77c3fe']
builddependencies = [
('binutils', '2.38'),
]

dependencies = [
('Python', '3.10.4'),
Expand All @@ -22,12 +22,15 @@ dependencies = [
use_pip = True

exts_list = [
('jupyter_server', '1.21.0'),
(name, version),
('jupyter_server', '1.21.0', {
'checksums': ['d0adca19913a3763359be7f0b8c2ea8bfde356f4b8edd8e3149d7d0fbfaa248b'],
}),
(name, version, {
'checksums': ['da769078650766b1fca6ef1e673d15ddd6ce7428001e05cc364cba246a77c3fe'],
}),
]

# Add the notebook extension to the search path for jupyter notebooks
#
modextrapaths = {
'JUPYTER_PATH': 'share/jupyter/',
}
Expand Down

0 comments on commit f3a5278

Please sign in to comment.