# -*- 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.6
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  22e72add9eb9d9623db96f2d77e1230f1507e339 \
                    sha256  df7cd16470fbd26fc4969a208efadc46319334eb97def1ddf48919b351192b8e \
                    size    316416

python.versions     39 310 311 312 313

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