diff options
author | fanquake <fanquake@gmail.com> | 2023-09-29 19:33:05 +0800 |
---|---|---|
committer | jgart <jgart@dismail.de> | 2023-10-03 20:46:05 -0500 |
commit | 0c6198319a61d85cd8925af418466dcdccf3daff (patch) | |
tree | 2bb4def30a5e5ad46a320718bcee80583cd9e395 | |
parent | 8e6022732ab6c4ba256f99d925f5fd413a87372c (diff) | |
download | guix-0c6198319a61d85cd8925af418466dcdccf3daff.tar.gz guix-0c6198319a61d85cd8925af418466dcdccf3daff.zip |
gnu: Add python-altgraph.
* gnu/packages/python-xyz.scm (python-altgraph): New variable.
Co-authored-by: jgart <jgart@dismail.de>
-rw-r--r-- | gnu/packages/python-xyz.scm | 20 |
1 files changed, 20 insertions, 0 deletions
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") |