Ticket #68224: py-referencing.Portfile

File py-referencing.Portfile, 1.1 KB (added by johankytt, 12 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-referencing
7version             0.30.2
8revision            0
9categories-append   devel
10license             BSD
11supported_archs     noarch
12platforms           {darwin any}
13
14python.versions     37 38 39 310 311
15python.pep517       yes
16python.pep517_backend hatch
17
18maintainers         openmaintainer
19
20description         JSON referencing + Python
21
22long_description    An implementation-agnostic implementation of JSON reference resolution
23
24homepage            https://github.com/python-jsonschema/referencing
25
26checksums           rmd160  67c778ca6c31968e7558d50a66063e0795796081 \
27                    sha256  794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0 \
28                    size    53386
29
30if {${name} ne ${subport}} {
31    depends_build-append  port:py${python.version}-hatch-vcs
32
33    depends_lib-append    port:py${python.version}-attrs \
34                          port:py${python.version}-rpds_py
35}