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.

39 lines
1.0 KiB

  1. #
  2. # This is free software, licensed under the GNU General Public License v2.
  3. # See /LICENSE for more information.
  4. #
  5. include $(TOPDIR)/rules.mk
  6. PKG_NAME:=python3-networkx
  7. PKG_VERSION:=2.5
  8. PKG_RELEASE:=1
  9. PYPI_NAME:=networkx
  10. PKG_HASH:=7978955423fbc9639c10498878be59caf99b44dc304c2286162fd24b458c1602
  11. PKG_LICENSE:=BSD-3-clause
  12. PKG_LICENSE_FILES:=LICENSE.txt
  13. PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
  14. include ../pypi.mk
  15. include $(INCLUDE_DIR)/package.mk
  16. include ../python3-package.mk
  17. define Package/python3-networkx
  18. SECTION:=lang
  19. CATEGORY:=Languages
  20. SUBMENU:=Python
  21. TITLE:=Creating and manipulating graphs and networks
  22. URL:=https://networkx.github.io/
  23. DEPENDS:=+python3-light +python3-decorator
  24. endef
  25. define Package/python3-networkx/description
  26. NetworkX is a Python package for the creation, manipulation, and study
  27. of the structure, dynamics, and functions of complex networks.
  28. endef
  29. $(eval $(call Py3Package,python3-networkx))
  30. $(eval $(call BuildPackage,python3-networkx))
  31. $(eval $(call BuildPackage,python3-networkx-src))