me
/
guix
Archived
1
0
Fork 0

gnu: Add python-altgraph.

* gnu/packages/python-xyz.scm (python-altgraph): New variable.

Co-authored-by: jgart <jgart@dismail.de>
master
fanquake 2023-09-29 19:33:05 +08:00 committed by jgart
parent 8e6022732a
commit 0c6198319a
No known key found for this signature in database
GPG Key ID: A52AA2B477B6DD35
1 changed files with 20 additions and 0 deletions

View File

@ -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")