mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 18:25:41 +03:00
26 lines
823 B
Text
26 lines
823 B
Text
# Contributor: Kaarle Ritvanen <kunkku@alpinelinux.org>
|
|
# Maintainer: Kaarle Ritvanen <kunkku@alpinelinux.org>
|
|
pkgname=py3-django-tables2
|
|
pkgver=2.5.3
|
|
pkgrel=0
|
|
pkgdesc="Table/data-grid framework for Django"
|
|
url="https://github.com/jieter/django-tables2"
|
|
arch="noarch"
|
|
license="BSD-2-Clause"
|
|
depends="python3 py3-django"
|
|
makedepends="py3-setuptools"
|
|
options="!check" #no testsuite
|
|
source="https://files.pythonhosted.org/packages/source/d/django-tables2/django-tables2-$pkgver.tar.gz"
|
|
builddir="$srcdir"/django-tables2-$pkgver
|
|
|
|
build() {
|
|
python3 setup.py --quiet build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py --quiet install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
83ea19761f1228f16e544d7f6250d30b5bc31d8a36616083abfc6f6cd927d2dff5f301e453cfd9d98d0a9efb077490a3ea59107322f5215823502831856a4857 django-tables2-2.5.3.tar.gz
|
|
"
|