mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: Add python-toposort.
* gnu/packages/python-xyz.scm (python-toposort): New variable.
This commit is contained in:
parent
fa0a18522d
commit
08447ab7cd
1 changed files with 19 additions and 0 deletions
|
@ -8029,6 +8029,25 @@ (define-public python-pulp
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue