mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 17:01:34 +02:00
31 lines
935 B
Plaintext
31 lines
935 B
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-flask-peewee
|
|
_pkgname=flask-peewee
|
|
pkgver=3.0.0
|
|
pkgrel=1
|
|
pkgdesc="Flask integration for peewee"
|
|
url="http://pypi.python.org/pypi/flask-peewee"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3 py3-flask py-peewee py3-werkzeug py3-jinja2 py3-wtforms py-wtf-peewee"
|
|
depends_dev=""
|
|
makedepends="python3-dev py3-setuptools"
|
|
install=""
|
|
subpackages=""
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="e9773a46e73eb03864487d98da1c1f094a13807c2364331cdfad56878e2d8424628d04769e8028516ba62577c4a9c32219d2dffeabb87e88ae37baaff22f5bc9 flask-peewee-3.0.0.tar.gz"
|