python-docker: Update to 7.0.0
[feed/packages.git] / lang / python / python-docker / Makefile
1 include $(TOPDIR)/rules.mk
2
3 PKG_NAME:=python-docker
4 PKG_VERSION:=7.0.0
5 PKG_RELEASE:=1
6
7 PYPI_NAME:=docker
8 PKG_HASH:=323736fb92cd9418fc5e7133bc953e11a9da04f4483f828b527db553f1e7e5a3
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))