[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add python-altgraph.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add python-altgraph. |
Date: |
Tue, 03 Oct 2023 21:47:22 -0400 |
This is an automated email from the git hooks/post-receive script.
jgart pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 0c6198319a gnu: Add python-altgraph.
0c6198319a is described below
commit 0c6198319a61d85cd8925af418466dcdccf3daff
Author: fanquake <fanquake@gmail.com>
AuthorDate: Fri Sep 29 19:33:05 2023 +0800
gnu: Add python-altgraph.
* gnu/packages/python-xyz.scm (python-altgraph): New variable.
Co-authored-by: jgart <jgart@dismail.de>
---
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")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add python-altgraph.,
guix-commits <=