aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-responses/APKBUILD
blob: 69f9f1de69b7cd54cfbe77aaef2866f3eadd94b6 (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: Keith Maxwell <keith.maxwell@gmail.com>
pkgname=py3-responses
_pkgname=responses
pkgver=0.10.12
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="$pkgname-$pkgver.tar.gz::https://github.com/getsentry/responses/archive/$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="b97e0cce7d585b822f133db48916ec1fe371b7042983d9309b5192897ada78a0a0aec480f2c04f91196ac007a851fc9ba610ac5d0751d712913f9573f033dcae  py3-responses-0.10.12.tar.gz"