aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-apipkg/APKBUILD
blob: a8c1105685c3b15572db119b44e2ed34f1111c66 (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
27
28
29
30
31
32
33
34
35
36
# Contributor: Dmitry Romanenko <dmitry@romanenko.in>
# Maintainer: Dmitry Romanenko <dmitry@romanenko.in>
pkgname=py3-apipkg
_pkgname=apipkg
pkgver=1.5
pkgrel=4
pkgdesc="apipkg: namespace control and lazy-import mechanism"
# https://github.com/pytest-dev/apipkg/issues/17
options="!check" # Known incompatibilites with pytest5
url="https://github.com/pytest-dev/apipkg"
arch="noarch"
license="MIT"
depends="python3"
makedepends="py3-setuptools"
checkdepends="py3-pytest"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz
	14.patch"
builddir="$srcdir"/$_pkgname-$pkgver

replaces="py-apipkg" # Backwards compatibility
provides="py-apipkg=$pkgver-r$pkgrel" # Backwards compatibility

build() {
	python3 setup.py build
}

check() {
	PYTHONPATH="$builddir/build/lib/:$PYTHONPATH" python3 -m pytest
}

package() {
	python3 setup.py install --prefix=/usr --root="$pkgdir"
}

sha512sums="828937ca5e203915248fac54db8e7c13f941e006403f2a415c27fa4d1aa114790be3d7b5dd892f528611e5e6dfe75114ee80f4f4589a03c3f789ae6ddfcae0bf  apipkg-1.5.tar.gz
96181be5cbc1bac03aa74347247fd4e97a8d2b3a93ebc8d412acdb3a02ae3792193234d18b0be626be2e76108c5803bd39ae995a98ecf324b8bc0e98a72bb7a8  14.patch"