59 lines
1.5 KiB
Text
59 lines
1.5 KiB
Text
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
# Contributor: Justin Berthault <justin.berthault@zaclys.net>
|
|
# Maintainer: Antoine Martin (ayakael) <dev@ayakael.net>
|
|
pkgname=py3-django-rest-framework
|
|
_pkgname=django-rest-framework
|
|
pkgver=3.14.0
|
|
pkgrel=0
|
|
pkgdesc="Web APIs for Django"
|
|
url="https://github.com/encode/django-rest-framework"
|
|
arch="noarch"
|
|
license="Custom"
|
|
depends="
|
|
py3-django
|
|
py3-tz
|
|
"
|
|
makedepends="
|
|
py3-setuptools
|
|
py3-gpep517
|
|
py3-wheel
|
|
"
|
|
checkdepends="
|
|
py3-pytest-django
|
|
py3-pytest-cov
|
|
py3-core-api
|
|
py3-jinja2
|
|
py3-uritemplate
|
|
py3-django-guardian
|
|
py3-psycopg2
|
|
py3-markdown
|
|
py3-yaml
|
|
py3-inflection
|
|
"
|
|
subpackages="$pkgname-pyc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/encode/$_pkgname/archive/$pkgver.tar.gz"
|
|
options="!check" # Failing tests
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
check() {
|
|
python3 -m venv --clear --without-pip --system-site-packages .testenv
|
|
.testenv/bin/python3 -m installer "$builddir"/.dist/*.whl
|
|
# test_urlpatterns: AssertionError: assert [<URLPattern ''>] is not [<URLPattern ''>]
|
|
# test_markdown: rather hard to decipher assertion error
|
|
.testenv/bin/python3 -m pytest -v -k 'not test_urlpatterns and not test_markdown'
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" \
|
|
.dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
c1012c656b427e0318b2056e2f984ddc75a5b4e85f375c76fba165ad06e285848eee1bc6dc76c097daec57d780efb2551110199d62ce636a03951aec13ab4013 py3-django-rest-framework-3.14.0.tar.gz
|
|
"
|