blob: f74c056c28386cf24ef19386e8b72cd6f8b26e9b (
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
|
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=py3-sqlalchemy-utils
_pkgname=SQLAlchemy-Utils
pkgver=0.36.3
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="py3-anyjson py3-arrow py3-babel py3-colour py3-cryptography
py3-dateutil py3-furl py3-intervals py3-passlib py3-phonenumbers
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
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="6ecc0c14b7b3920db0104238be684f4d0a64e13c8ca6870bb62285380ba16acd94a99e069eccba0b681a0c65c9b7fc3b58168a7f23e634492411479a20d1f6f0 SQLAlchemy-Utils-0.36.3.tar.gz"
|