mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
26 lines
809 B
Plaintext
26 lines
809 B
Plaintext
# Contributor: Duncan Bellamy <dunk@denkimushi.com>
|
|
# Maintainer: Duncan Bellamy <dunk@denkimushi.com>
|
|
pkgname=py3-transip
|
|
pkgver=2.1.2
|
|
pkgrel=4
|
|
pkgdesc="TransIP API Connector"
|
|
options="!check" # No testsuite in pypi tarball
|
|
url="https://github.com/benkonrath/transip-api"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="py3-cryptography py3-requests py3-suds-jurko"
|
|
makedepends="py3-setuptools"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://files.pythonhosted.org/packages/source/t/transip/transip-$pkgver.tar.gz"
|
|
builddir="$srcdir/transip-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="1556b3513a921390433a78aca8dd1bc3c9221ab75bf84f6775d6f842fa881c52c7ffc7f96cacfb413462f89c3f4cb40730613f2a177bfc41cb988e5edb59f87c transip-2.1.2.tar.gz"
|