mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 17:16:44 +02:00
30 lines
909 B
Text
30 lines
909 B
Text
# Contributor: Noel Kuntze <noel.kuntze@thermi.consulting>
|
|
# Maintainer: Noel Kuntze <noel.kuntze@thermi.consulting>
|
|
pkgname=py3-soappy
|
|
pkgver=0.52.30
|
|
pkgrel=0
|
|
pkgdesc="Simple to use SOAP library for Python"
|
|
url="https://github.com/Synerty/SOAPpy-py3"
|
|
arch="noarch"
|
|
license="BSD-3-Clause-Attribution"
|
|
depends="py3-defusedxml py3-wstools py3-m2crypto"
|
|
makedepends="py3-setuptools py3-gpep517"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://pypi.io/packages/source/S/SOAPpy-py3/SOAPpy-py3-$pkgver.tar.gz"
|
|
builddir="$srcdir/SOAPpy-py3-$pkgver"
|
|
options="!check" # Requires running server
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
package() {
|
|
gpep517 install-wheel --destdir "$pkgdir" \
|
|
.dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
347e17c0c68136f319f405419fbc9bf9665cddd8d1caeaf08c3129d6b4ccf41cf1cf622bd04cc5f743b5f4baaaff86c117bc81367fa4b68a3cf348bbfa954ba0 SOAPpy-py3-0.52.30.tar.gz
|
|
"
|