# -*- 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           github 1.0
PortGroup           python 1.0

github.setup        spulec freezegun 0.3.15
name                py-freezegun
revision            0

categories-append   devel
platforms           darwin
supported_archs     noarch
license             Apache-2
maintainers         nomaintainer

description         FreezeGun is a library that allows your python tests \
                    to travel through time by mocking the datetime module.
long_description    ${description}

checksums           rmd160  4f58e0cba6024acfb89a68236da5857ebbe772e8 \
                    sha256  e1e1ec9c1227a2411ab3f5c5775e452a91cbf74a60830d60ac440de133617f84 \
                    size    23874

python.versions     27 35 36 37 38

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

    depends_lib-append      port:py${python.version}-dateutil \
                            port:py${python.version}-six

    depends_test-append     port:py${python.version}-pytest \
                            port:py${python.version}-mock

    test.run                yes
    test.cmd                py.test-${python.branch}
    test.target

    livecheck.type  none
}
