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