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

# This is the last release before regressing into rust.
name                py-hypothesis
version             6.155.7
revision            0
epoch               1
categories-append   devel
platforms           {darwin any}
supported_archs     noarch
license             MPL-2
maintainers         {khindenburg @kurthindenburg} \
                    openmaintainer

description         Library for property-based testing

long_description \
   Hypothesis is an advanced testing library for Python. It lets you write \
   tests which are parametrized by a source of examples, and then generates \
   simple and comprehensible examples that make your tests fail.

homepage            https://pypi.python.org/pypi/hypothesis

checksums           rmd160  50bc745f11506fa01622820ccaf47b7f18894a89 \
                    sha256  d8d6091753d0669db3c90c5e5b346cb37c72f3dd9378c8413acb1fd5da63f7ea \
                    size    478291

python.versions     310 311 312 313 314

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

    if {${python.version} < 311} {
        depends_lib-append \
                    port:py${python.version}-exceptiongroup
    }

    # Leave for next major release
    if {0} {
    notes "Welcome to the next major version of Hypothesis!\
    If you were running on the last version of Hypothesis 5.x without\
    any Hypothesis deprecation warnings (or using private APIs), this\
    upgrade should cause no issues.\
    See https://hypothesis.readthedocs.io/en/latest/changes.html#v6-0-0\
    for more information."
    }

    livecheck.type  none
}
