From 0c6198319a61d85cd8925af418466dcdccf3daff Mon Sep 17 00:00:00 2001 From: fanquake Date: Fri, 29 Sep 2023 19:33:05 +0800 Subject: [PATCH] gnu: Add python-altgraph. * gnu/packages/python-xyz.scm (python-altgraph): New variable. Co-authored-by: jgart --- gnu/packages/python-xyz.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 25027b45fc..be2d5cf692 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11519,6 +11519,26 @@ GA4GH Task Execution API.") algorithm.") (license license:asl2.0))) +(define-public python-altgraph + (package + (name "python-altgraph") + (version "0.17.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "altgraph" version)) + (sha256 + (base32 "01j48np3g50g6insjkszsz0vifwlm6gspria5vdwlkbciywznnhv")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest)) + (home-page "https://altgraph.readthedocs.io") + (synopsis "Python graph network package") + (description +"This package provides tools for constructing graphs, BFS and DFS +traversals, topological sort, shortest paths, and more with graphviz +output.") + (license license:expat))) + (define-public python-three-merge (package (name "python-three-merge")