# -*- 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

PortSystem          1.0
PortGroup           python 1.0

name                py-frozendict
version             2.4.7
revision            0

categories-append   devel
license             LGPL-3
maintainers         nomaintainer

description         frozendict is a simple immutable dictionary
long_description    {*}${description}. It's fast as dict, and \
                    sometimes faster! Unlike other similar \
                    implementations, immutability is guaranteed: \
                    you can't change the internal variables of \
                    the class, and they are all immutable objects.

homepage            https://github.com/Marco-Sulla/python-frozendict

checksums           rmd160  792c6347f5d9ae3ad34ec16d4003149b42e54c4a \
                    sha256  e478fb2a1391a56c8a6e10cc97c4a9002b410ecd1ac28c18d780661762e271bd \
                    size    317082

python.versions     310 311 312 313 314

if {${name} ne ${subport}} {
    # C extension is only available for earlier Python versions
    if {${python.version} >= 311} {
        supported_archs noarch
        platforms       {darwin any}
    }
}
