mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 19:02:09 +00:00
Changelog: https://networkx.org/documentation/stable/release/release_dev.html Minor release with new algorithms and bug fixes since 3.5. Add test.sh to verify graph creation, pathfinding, and topological sort. Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=python-networkx
|
|
PKG_VERSION:=3.6.1
|
|
PKG_RELEASE:=1
|
|
|
|
PYPI_NAME:=networkx
|
|
PKG_HASH:=26b7c357accc0c8cde558ad486283728b65b6a95d85ee1cd66bafab4c8168509
|
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
PKG_LICENSE_FILES:=LICENSE.txt
|
|
PKG_CPE_ID:=cpe:/a:python:networkx
|
|
PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
|
|
|
|
include ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python3-package.mk
|
|
|
|
define Package/python3-networkx
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
SUBMENU:=Python
|
|
TITLE:=Creating and manipulating graphs and networks
|
|
URL:=https://networkx.org/
|
|
DEPENDS:=+python3-light +python3-logging +python3-uuid +python3-xml
|
|
endef
|
|
|
|
define Package/python3-networkx/description
|
|
NetworkX is a Python package for the creation, manipulation, and study
|
|
of the structure, dynamics, and functions of complex networks.
|
|
endef
|
|
|
|
$(eval $(call Py3Package,python3-networkx))
|
|
$(eval $(call BuildPackage,python3-networkx))
|
|
$(eval $(call BuildPackage,python3-networkx-src))
|