mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 04:35:39 +03:00
this marginally increases install speed by not checking if it needs a rebuild. also remove --prefix=/usr as it defaults to /usr already. might break a build or two, will fix later
41 lines
1.1 KiB
Text
41 lines
1.1 KiB
Text
# Contributor: Duncan Bellamy <dunk@denkimushi.com>
|
|
# Maintainer: Duncan Bellamy <dunk@denkimushi.com>
|
|
pkgname=py3-softlayer-zeep
|
|
pkgver=5.0.0
|
|
pkgrel=1
|
|
pkgdesc="modern/fast Python SOAP client based on lxml / requests"
|
|
url="https://docs.python-zeep.org/en/master/"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="
|
|
py3-attrs
|
|
py3-isodate
|
|
py3-lxml
|
|
py3-platformdirs
|
|
py3-requests
|
|
py3-requests-file
|
|
py3-requests-toolbelt
|
|
py3-tz
|
|
"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-freezegun py3-pretend py3-pytest py3-pytest-asyncio py3-pytest-httpx py3-requests-mock"
|
|
# test deps not available
|
|
if [ "$CARCH" = "armhf" ] || [ "$CARCH" = "ppc64le" ]; then options="!check"; fi
|
|
source="https://files.pythonhosted.org/packages/source/s/softlayer-zeep/softlayer-zeep-$pkgver.tar.gz"
|
|
builddir="$srcdir/softlayer-zeep-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
PYTHONPATH=build/lib python3 -m pytest
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
8dc85f7692410068fb1b6d1de9c8f7c6e03125773fb6b80de127642dd7303107f14cbe9d175b0a316b4a15697e8ffc3a91077fda1edf625ce5614abc6fd5489e softlayer-zeep-5.0.0.tar.gz
|
|
"
|