emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#65194: closed ([PATCH] gnu: add python-altgraph.)


From: GNU bug Tracking System
Subject: bug#65194: closed ([PATCH] gnu: add python-altgraph.)
Date: Wed, 04 Oct 2023 01:52:01 +0000

Your message dated Wed, 04 Oct 2023 01:51:19 +0000
with message-id <4308ae63034f0924960d7ac91a8280cf@dismail.de>
and subject line Re: [bug#65194] [PATCH v3] gnu: Add python-altgraph.
has caused the debbugs.gnu.org bug report #65194,
regarding [PATCH] gnu: add python-altgraph.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
65194: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=65194
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: add python-altgraph. Date: Thu, 10 Aug 2023 10:41:52 +0200
From c3a2be87c3f2fc4e39e765444e4e08047998bf8a Mon Sep 17 00:00:00 2001
From: fanquake <fanquake@gmail.com>
Date: Thu, 10 Aug 2023 10:35:02 +0200
Subject: [PATCH] gnu: add python-altgraph.

* gnu/packages/python-xyz.scm (python-altgraph): New variable.
---
 gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b8e8097c7b..8403386277 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -11369,6 +11369,28 @@ (define-public python-toposort
 algorithm.")
     (license license:asl2.0)))
 
+(define-public python-altgraph
+  (package
+    (name "python-altgraph")
+    (version "0.17.3")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/ronaldoussoren/altgraph")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0n9qw0xxss4sbpys5hh1gbzy0bfjkaf4h8fd27vprnbix6q6zlvp"))))
+    (build-system pyproject-build-system)
+    (home-page "https://github.com/ronaldoussoren/altgraph")
+    (synopsis "Python graph (network) package")
+    (description
+     "altgraph is a fork of graphlib: a graph (network) package for
+constructing graphs, BFS and DFS traversals, topological sort, shortest paths,
+etc. with graphviz output.")
+    (license license:expat)))
+
 (define-public python-three-merge
   (package
     (name "python-three-merge")
--
2.41.0

--- End Message ---
--- Begin Message --- Subject: Re: [bug#65194] [PATCH v3] gnu: Add python-altgraph. Date: Wed, 04 Oct 2023 01:51:19 +0000
Hi Guixers,

I applied the patch with some small changes in 0c6198319a.

I fixed up the description and synopsis a bit and added python-pytest as a 
native-input since the pyproject-build-system does not include it so test 
wouldn't be run otherwise.

Thanks for your contributions and review to everyone involved. It is much 
appreciated!

all best,

jgart


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]