16 lines
426 B
Plaintext
16 lines
426 B
Plaintext
# Description: A Python library for the Docker Engine API
|
|
# URL: https://pypi.org/project/docker/
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: python3-requests python3-websocket-client
|
|
|
|
name=python3-docker
|
|
version=4.4.4
|
|
release=1
|
|
source=(https://pypi.python.org/packages/source/d/docker/docker-$version.tar.gz)
|
|
|
|
build() {
|
|
cd docker-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --root=$PKG
|
|
}
|