You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.1 KiB

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=python-docker
  3. PKG_VERSION:=4.2.1
  4. PKG_RELEASE:=2
  5. PYPI_NAME:=docker
  6. PKG_HASH:=380a20d38fbfaa872e96ee4d0d23ad9beb0f9ed57ff1c30653cbeb0c9c0964f2
  7. PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
  8. PKG_LICENSE:=Apache-2.0
  9. PKG_LICENSE_FILES:=LICENSE
  10. include ../pypi.mk
  11. include $(INCLUDE_DIR)/package.mk
  12. include ../python3-package.mk
  13. PYTHON3_PKG_SETUP_ARGS:=
  14. define Package/python3-docker
  15. SECTION:=lang
  16. CATEGORY:=Languages
  17. SUBMENU:=Python
  18. TITLE:=A Python library for the Docker Engine API
  19. URL:=https://github.com/docker/docker-py
  20. DEPENDS:=\
  21. +python3-light +python3-distutils +python3-logging \
  22. +python3-openssl +python3-paramiko +python3-six +python3-requests \
  23. +python3-websocket-client
  24. endef
  25. define Package/python3-docker/description
  26. A Python library for the Docker Engine API. It lets you do anything the
  27. docker command does, but from within Python apps – run containers manage
  28. containers, manage Swarms, etc.
  29. endef
  30. $(eval $(call Py3Package,python3-docker))
  31. $(eval $(call BuildPackage,python3-docker))
  32. $(eval $(call BuildPackage,python3-docker-src))