mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-31 11:21:17 +02:00
31 lines
948 B
Plaintext
31 lines
948 B
Plaintext
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=docker-py
|
|
pkgver=3.4.1
|
|
pkgrel=0
|
|
pkgdesc="Python library for the Docker Engine API"
|
|
url="https://github.com/dotcloud/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-pip py3-setuptools py3-six python3-dev"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/docker/$pkgname/archive/$pkgver.tar.gz"
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
python3 setup.py check
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="447dccb9129d549886882e6cf0a8ac56d91f7ed57b6aa1dca1942c62d70dc78b92184cbdd9ac5f3445be04cfaadf0b4fba191fb70e223e93c6d1cfbfd334a397 docker-py-3.4.1.tar.gz"
|