guix-commits
[Top][All Lists]
Advanced

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

03/04: gnu: Add python-toposort.


From: guix-commits
Subject: 03/04: gnu: Add python-toposort.
Date: Tue, 16 Mar 2021 09:18:24 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 08447ab7cdb4031d7e41870176e375911f4a0917
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Mar 16 14:17:07 2021 +0100

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ca00a8d..0c865df 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8029,6 +8029,25 @@ generate MPS or LP files and call GLPK, COIN CLP/CBC, 
CPLEX, and GUROBI to
 solve linear problems.")
     (license license:expat)))
 
+(define-public python-toposort
+  (package
+    (name "python-toposort")
+    (version "1.6")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "toposort" version))
+       (sha256
+        (base32
+         "1b2hppzjg3p006qya3yfdnp76dwq8frl97lypdam0kw4xxb8yhm7"))))
+    (build-system python-build-system)
+    (home-page "https://gitlab.com/ericvsmith/toposort";)
+    (synopsis "Topological sort algorithm")
+    (description
+     "This package provides an implementation of a topological sort
+algorithm.")
+    (license license:asl2.0)))
+
 (define-public snakemake
   (package
     (name "snakemake")



reply via email to

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