Ticket #68224: py-jupyter-lsp.2.Portfile

File py-jupyter-lsp.2.Portfile, 1.0 KB (added by johankytt, 9 months ago)
Line 
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
3PortSystem          1.0
4PortGroup           python 1.0
5
6name                py-jupyter-lsp
7version             2.2.0
8revision            0
9categories-append   devel
10license             BSD
11supported_archs     noarch
12platforms           {darwin any}
13
14python.versions     38 39 310 311
15
16maintainers         openmaintainer
17
18description         Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab server
19
20long_description    {*}${description}
21
22homepage            https://github.com/jupyter-lsp/jupyterlab-lsp
23
24checksums           rmd160  45c49e032b47e491175d0326d895afb50b4f5b39 \
25                    sha256  8ebbcb533adb41e5d635eb8fe82956b0aafbf0fd443b6c4bfa906edeeb8635a1 \
26                    size    45769
27
28if {${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}