Merge pull request #18400 from nmav/tmp-tang-self-contained
[feed/packages.git] / lang / python / python-docker / Makefile
1 include $(TOPDIR)/rules.mk
2
3 PKG_NAME:=python-docker
4 PKG_VERSION:=6.0.1
5 PKG_RELEASE:=3
6
7 PYPI_NAME:=docker
8 PKG_HASH:=896c4282e5c7af5c45e8b683b0b0c33932974fe6e50fc6906a0a83616ab3da97
9
10 PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
11 PKG_LICENSE:=Apache-2.0
12 PKG_LICENSE_FILES:=LICENSE
13
14 PKG_BUILD_DEPENDS:=python-setuptools-scm/host
15
16 include ../pypi.mk
17 include $(INCLUDE_DIR)/package.mk
18 include ../python3-package.mk
19
20 define Package/python3-docker
21 SECTION:=lang
22 CATEGORY:=Languages
23 SUBMENU:=Python
24 TITLE:=A Python library for the Docker Engine API
25 URL:=https://github.com/docker/docker-py
26 DEPENDS:=\
27 +python3-light +python3-distutils +python3-logging \
28 +python3-openssl +python3-packaging +python3-paramiko +python3-six \
29 +python3-requests +python3-urllib3 +python3-websocket-client
30 endef
31
32 define Package/python3-docker/description
33 A Python library for the Docker Engine API. It lets you do anything the
34 docker command does, but from within Python apps – run containers manage
35 containers, manage Swarms, etc.
36 endef
37
38 $(eval $(call Py3Package,python3-docker))
39 $(eval $(call BuildPackage,python3-docker))
40 $(eval $(call BuildPackage,python3-docker-src))