# -*- 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-oauthlib
version             1.0.3
revision            1

categories-append   net security
platforms           darwin
supported_archs     noarch
license             BSD
maintainers         {petr @petrrr} openmaintainer

description         A generic, spec-compliant, thorough implementation of the \
                    OAuth request-signing logic.
long_description    ${description}

homepage            https://github.com/oauthlib/oauthlib
master_sites        pypi:[string index ${python.rootname} 0]/${python.rootname}
distname            ${python.rootname}-${version}

checksums           rmd160  07c48a5947b47d4511428c690452569f2191cc11 \
                    sha256  ef4bfe4663ca3b97a995860c0173b967ebd98033d02f38c9e1b2cbb6c191d9ad \
                    size    109095

python.versions     27 35 36 37

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

    depends_lib-append      port:py${python.version}-blinker \
                            port:py${python.version}-cryptography \
                            port:py${python.version}-jwt

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

    if {${python.version} eq 27} {
        depends_test-append \
                    port:py${python.version}-unittest2
    }

    test.run        yes

    livecheck.type  none
}