aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-responses/APKBUILD
blob: b621ec6c94aabbdc838ed755efff33242b6c0088 (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
# Maintainer:
pkgname=py3-responses
_pkgname=responses
pkgver=0.10.7
pkgrel=0
pkgdesc="Utility library for mocking out the requests Python library"
url="https://pypi.python.org/pypi/responses/"
arch="noarch"
license="Apache-2.0"
depends="py3-requests py3-six"
makedepends="py3-setuptools"
checkdepends="py3-flake8 py3-pytest py3-pytest-cov py3-pytest-localserver
	py3-werkzeug"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"

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

build() {
	python3 setup.py build
}

check() {
	py.test-3
}

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

sha512sums="dcdbac1555090309b17eec1c02887eea5080321ff359afc42e6b558954caec2ab757e6009ae539e6e4d002cd06f2289d909a28ae583e6fa062a5df89c301e1ff  responses-0.10.7.tar.gz"