mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
29 lines
952 B
Text
29 lines
952 B
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-webtest
|
|
_pkgname=WebTest
|
|
pkgver=2.0.33
|
|
pkgrel=1
|
|
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"
|