py-jupyterlab-server: add v2.6.0 (#24779)
This commit is contained in:
parent
cd118341e9
commit
463c704265
1 changed files with 7 additions and 1 deletions
|
@ -8,16 +8,22 @@ class PyJupyterlabServer(PythonPackage):
|
||||||
"""A set of server components for JupyterLab and JupyterLab
|
"""A set of server components for JupyterLab and JupyterLab
|
||||||
like applications"""
|
like applications"""
|
||||||
|
|
||||||
|
homepage = "https://github.com/jupyterlab/jupyterlab_server"
|
||||||
pypi = "jupyterlab_server/jupyterlab_server-1.2.0.tar.gz"
|
pypi = "jupyterlab_server/jupyterlab_server-1.2.0.tar.gz"
|
||||||
|
|
||||||
|
version('2.6.0', sha256='f300adf6bb0a952bebe9c807a3b2a345d62da39b476b4f69ea0dc6b5f3f6b97d')
|
||||||
version('1.2.0', sha256='5431d9dde96659364b7cc877693d5d21e7b80cea7ae3959ecc2b87518e5f5d8c')
|
version('1.2.0', sha256='5431d9dde96659364b7cc877693d5d21e7b80cea7ae3959ecc2b87518e5f5d8c')
|
||||||
version('1.1.0', sha256='bac27e2ea40f686e592d6429877e7d46947ea76c08c878081b028c2c89f71733')
|
version('1.1.0', sha256='bac27e2ea40f686e592d6429877e7d46947ea76c08c878081b028c2c89f71733')
|
||||||
|
|
||||||
|
depends_on('python@3.6:', when='@2.5:', type=('build', 'run'))
|
||||||
depends_on('python@3.5:', type=('build', 'run'))
|
depends_on('python@3.5:', type=('build', 'run'))
|
||||||
depends_on('py-setuptools', type='build')
|
depends_on('py-setuptools', type='build')
|
||||||
|
|
||||||
depends_on('py-requests', type=('build', 'run'))
|
depends_on('py-requests', type=('build', 'run'))
|
||||||
depends_on('py-json5', type=('build', 'run'))
|
depends_on('py-json5', type=('build', 'run'))
|
||||||
depends_on('py-jsonschema@3.0.1:', type=('build', 'run'))
|
depends_on('py-jsonschema@3.0.1:', type=('build', 'run'))
|
||||||
depends_on('py-notebook@4.2.0:', type=('build', 'run'))
|
|
||||||
depends_on('py-jinja2@2.10:', type=('build', 'run'))
|
depends_on('py-jinja2@2.10:', type=('build', 'run'))
|
||||||
|
depends_on('py-babel', when='@2.5.1:', type=('build', 'run'))
|
||||||
|
depends_on('py-packaging', when='@2.5.1:', type=('build', 'run'))
|
||||||
|
depends_on('py-jupyter-server@1.4:1.99', when='@2.5.1:', type=('build', 'run'))
|
||||||
|
depends_on('py-notebook@4.2.0:', when='@:2.5.0', type=('build', 'run'))
|
||||||
|
|
Loading…
Reference in a new issue