mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-13 11:19:50 +03:00
30 lines
831 B
Text
30 lines
831 B
Text
# Contributor:
|
|
# Maintainer: Philipp Glaum <p@pglaum.de>
|
|
pkgname=py3-flask-sqlalchemy
|
|
_pkgname=Flask-SQLAlchemy
|
|
pkgver=2.5.1
|
|
pkgrel=2
|
|
pkgdesc="Adds SQLAlchemy support to your Flask application."
|
|
url="https://pypi.org/project/Flask-SQLAlchemy/"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="python3 py3-flask py3-greenlet py3-sqlalchemy"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
5d483418204030837e62769d45c16af88c5be6dbafc7c340cc4e67ef1736ea5102f506156119864cd7673cf382b0d3f27050bda64273b93ef4805fce9e1a0f6f Flask-SQLAlchemy-2.5.1.tar.gz
|
|
"
|