# -*- 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-xxhash
version             3.5.0
revision            0
categories-append   devel
platforms           darwin
license             BSD
maintainers         nomaintainer

description         Python binding for xxHash
long_description    {*}${description}

homepage            https://github.com/ifduyue/python-xxhash

checksums           rmd160  4176bbff3228d925d1b12ac3dd96c94c4c6617fc \
                    sha256  84f2caddf951c9cbf8dc2e22a89d4ccf5d86391ac6418fe81e3c67d0cf60b45f \
                    size    84241

python.versions     310 311 312 313

if {${name} ne ${subport}} {
    depends_build-append \
                    port:py${python.version}-setuptools_scm

    depends_lib-append \
                    port:xxhashlib

    build.env-append \
                    XXHASH_LINK_SO=1

    pre-test {
        # See https://docs.pytest.org/en/stable/pythonpath.html
        delete ${test.dir}/${test.target}/__init__.py
    }

    test.run        yes
}
