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

github.setup        mitsuhiko flask-sqlalchemy 2.3.1

name                py-flask-sqlalchemy
categories-append   www
platforms           darwin
supported_archs     noarch
license             BSD
maintainers         {aronnax @lpsinger} openmaintainer

description         Flask support for SQLAlchemy
long_description    \
    Flask-SQLAlchemy is an extension for Flask that adds support for SQLAlchemy \
    to your application. It requires SQLAlchemy 0.6 or higher. It aims to \
    simplify using SQLAlchemy with Flask by providing useful defaults and extra \
    helpers that make it easier to accomplish common tasks.

homepage            https://pythonhosted.org/Flask-SQLAlchemy/
checksums           rmd160  98461a11f7460a4f7fe2e3b0d6dcee9286f32499 \
                    sha256  d3fe0ae672b0d1e34348482adf781e7af36b60e005347154fbe7594199e33457

python.versions     27 34 35 36

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

    livecheck.type          none
}