1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim: fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python 1.0 |
---|
5 | |
---|
6 | name py-jupyter-lsp |
---|
7 | version 2.2.0 |
---|
8 | revision 0 |
---|
9 | categories-append devel |
---|
10 | license BSD |
---|
11 | supported_archs noarch |
---|
12 | platforms {darwin any} |
---|
13 | |
---|
14 | python.versions 38 39 310 311 |
---|
15 | |
---|
16 | maintainers openmaintainer |
---|
17 | |
---|
18 | description Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab server |
---|
19 | |
---|
20 | long_description {*}${description} |
---|
21 | |
---|
22 | homepage https://github.com/jupyter-lsp/jupyterlab-lsp |
---|
23 | |
---|
24 | checksums rmd160 45c49e032b47e491175d0326d895afb50b4f5b39 \ |
---|
25 | sha256 8ebbcb533adb41e5d635eb8fe82956b0aafbf0fd443b6c4bfa906edeeb8635a1 \ |
---|
26 | size 45769 |
---|
27 | |
---|
28 | if {${name} ne ${subport}} { |
---|
29 | depends_lib-append port:py${python.version}-jupyter_server |
---|
30 | |
---|
31 | if {${python.version} < 310} { |
---|
32 | depends_lib-append port:py${python.version}-importlib_metadata |
---|
33 | } |
---|
34 | } |
---|