# -*- 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.7.0
revision            0

categories-append   devel
platforms           darwin
license             BSD
maintainers         {mps @Schamschula} openmaintainer
description         Python binding for xxHash
long_description    {*}${description}
homepage            https://github.com/ifduyue/python-xxhash

checksums           rmd160  021d49a6c4c427e1d4a381930d8568f58212a933 \
                    sha256  6cc4eefbb542a5d6ffd6d70ea9c502957c925e800f998c5630ecc809d6702bae \
                    size    82022

python.versions     310 311 312 313 314

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
}
