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_events |
---|
7 | version 0.7.0 |
---|
8 | revision 0 |
---|
9 | categories-append devel |
---|
10 | license BSD |
---|
11 | supported_archs noarch |
---|
12 | platforms {darwin any} |
---|
13 | |
---|
14 | python.versions 37 38 39 310 311 |
---|
15 | python.pep517 yes |
---|
16 | python.pep517_backend hatch |
---|
17 | |
---|
18 | maintainers {stromnov @stromnov} openmaintainer |
---|
19 | |
---|
20 | description An event system for Jupyter Applications and extensions |
---|
21 | long_description Jupyter Events enables Jupyter Python Applications (e.g. Jupyter Server, JupyterLab Server, JupyterHub, etc.)\ |
---|
22 | to emit events—structured data describing things happening inside the application. Other software\ |
---|
23 | (e.g. client applications like JupyterLab) can listen and respond to these events. |
---|
24 | |
---|
25 | |
---|
26 | homepage https://ipython.org/ |
---|
27 | |
---|
28 | checksums rmd160 dfe734e8c9eed440fb83b11e8564538efbce35c8 \ |
---|
29 | sha256 7be27f54b8388c03eefea123a4f79247c5b9381c49fb1cd48615ee191eb12615 \ |
---|
30 | size 59717 |
---|
31 | |
---|
32 | if {${name} ne ${subport}} { |
---|
33 | depends_build-append \ |
---|
34 | port:py${python.version}-rfc3339_validator \ |
---|
35 | port:py${python.version}-rfc3986_validator |
---|
36 | |
---|
37 | depends_lib-append port:py${python.version}-referencing \ |
---|
38 | port:py${python.version}-jsonschema \ |
---|
39 | port:py${python.version}-python-json-logger \ |
---|
40 | port:py${python.version}-yaml \ |
---|
41 | port:py${python.version}-traitlets |
---|
42 | |
---|
43 | livecheck.type none |
---|
44 | } |
---|