blob: 4377deccd5f60d8643711a95ce2b2ce137792c0f (
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
|
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=py3-webtest
_pkgname=WebTest
pkgver=2.0.33
pkgrel=0
pkgdesc="A Helper to test WSGI applications"
options="!check" # Requires unpackaged dependencies
url="http://webtest.pythonpaste.org/"
arch="noarch"
license="MIT"
depends="python3"
makedepends="py3-setuptools py3-waitress py3-six py3-beautifulsoup4 py3-webob"
source="https://pypi.io/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
repalces="py-webtest" # Backwards compat
provides="py-webtest=$pkgver-r$pkgrel" # Backwards compat
builddir="$srcdir"/$_pkgname-$pkgver
build() {
python3 setup.py build
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="9f5c614f8215837dc5cecc9c3e844c5e1678eb8275f9e27a0ec6a68648e9f4f09155aa72f6c731c34028b8671b7776a94235f3e54d7dbf5ff55de94840171ca8 WebTest-2.0.33.tar.gz"
|