1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-17 14:05:25 +03:00
aports/testing/py3-sqlalchemy-utils/APKBUILD

33 lines
920 B
Text

# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=py3-sqlalchemy-utils
_pkgname=SQLAlchemy-Utils
pkgver=0.40.0
pkgrel=0
pkgdesc="Various utility functions and custom data types for SQLAlchemy"
url="https://sqlalchemy-utils.readthedocs.io/"
arch="noarch"
license="BSD-3-Clause"
depends="python3 py3-sqlalchemy"
makedepends="
py3-gpep517
py3-setuptools
py3-wheel
"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir"/$_pkgname-$pkgver
build() {
gpep517 build-wheel \
--wheel-dir dist \
--output-fd 3 3>&1 >&2
}
package() {
python3 -m installer -d "$pkgdir" \
dist/*.whl
}
sha512sums="
31d259e8eb6b96aa71c0d92b161e4aaf229022e5b162c7ef5f5366d651e36b1dfea9cde4ae10f3472d29f910ada51da67512627b7742e293ee689efa6e4f86d6 SQLAlchemy-Utils-0.40.0.tar.gz
"