mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
27 lines
891 B
Text
27 lines
891 B
Text
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=docker-py
|
|
pkgver=5.0.0
|
|
pkgrel=1
|
|
pkgdesc="Python library for the Docker Engine API"
|
|
url="https://github.com/docker/docker-py"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="dockerpy-creds py3-cparser py3-cryptography py3-ipaddress
|
|
py3-packaging py3-parsing py3-requests py3-websocket-client"
|
|
makedepends="py3-flake8 py3-mock py3-setuptools py3-six python3-dev"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/docker/docker-py/archive/$pkgver.tar.gz"
|
|
|
|
check() {
|
|
python3 setup.py check
|
|
}
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="fae4afcda91ddf946048f76e62928a4891e1b0ce522b820aefb774dde58eb8e2aac0a381971acca04ca87794989ba675464e7913fab4abf2ed414719d66c91d1 docker-py-5.0.0.tar.gz"
|