mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 13:41:20 +02:00
27 lines
908 B
Plaintext
27 lines
908 B
Plaintext
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=docker-py
|
|
pkgver=5.0.3
|
|
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"
|
|
options="!check" # requires running Docker instance
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
50890e8d75eb9e4d3d98bbea5f86b86ad199a56ab0761bf2d0c0f3b7902810b2c17c2a677b0063963742a43a4660d400705bb8eb4e217c89302ae849a4ef3e08 docker-py-5.0.3.tar.gz
|
|
"
|