mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 10:15:12 +03:00
30 lines
912 B
Text
30 lines
912 B
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Contributor: Eivind Uggedal <eivind@uggedal.com>
|
|
# Maintainer:
|
|
pkgname=py3-flask-wtf
|
|
_pkgname=Flask-WTF
|
|
pkgver=1.1.1
|
|
pkgrel=1
|
|
pkgdesc="Flask WTForms extension"
|
|
url="https://pypi.org/project/Flask-WTF"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="python3 py3-flask py3-wtforms"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
replaces="py-flask-wtf" # Backwards compatibility
|
|
provides="py-flask-wtf=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
d604305a0fcf293f1327de545606729c327eb297889d9e83d06d497e29ea59fd2ef440e012a53f9e5ba6c68de8796272d8a4670e5ceb82e6635b295fe64b532b Flask-WTF-1.1.1.tar.gz
|
|
"
|