summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1d72747154a1ffe3ba330403318e6aac3a75bf53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Maintainer:  Anton Kudelin <kudelin at proton dot me>


pkgname=python-flask-appbuilder
_name=Flask-AppBuilder
pkgver=4.3.11
pkgrel=1
arch=(any)
pkgdesc="Simple and rapid application development framework, built on top of Flask"
url="https://github.com/dpgaspar/Flask-AppBuilder"
license=("BSD")
depends=(
        "python-apispec"
        "python-colorama"
        "python-click"
        "python-email-validator"
        "python-flask"
        "python-flask-babel"
        "python-flask-limiter"
        "python-flask-login"
        "python-flask-sqlalchemy"
        "python-flask-wtf"
        "python-flask-jwt-extended"
        "python-jsonschema"
        "python-marshmallow"
        "python-marshmallow-sqlalchemy"
        "python-dateutil"
        "python-prison"
        "python-pyjwt"
        "python-sqlalchemy"
        "python-sqlalchemy-utils"
        "python-wtforms"
        "python-werkzeug"
        "python-jmespath"
        "python-authlib"
        "python-flask-openid"
        "python-flask-talisman"
)
makedepends=("python-build" "python-installer" "python-setuptools" "python-wheel")
source=("https://pypi.org/packages/source/${_name:0:1}/$_name/$_name-$pkgver.tar.gz")
b2sums=('0f2f72146cbf361eab7e8f5ec481444044b1d392a8e0194e58b03787500fc29391eb385ed21b26b159a1cd699acfe5a214a6e68cf3b11ea7521e47279a7cd4ca')

build(){
 cd "$_name-$pkgver"
 python -m build --wheel --no-isolation
}

package(){
 cd "$_name-$pkgver"
 python -m installer --destdir="$pkgdir" dist/*.whl
}