mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 14:47:20 +01: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.")
|
solve linear problems.")
|
||||||
(license license:expat)))
|
(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
|
(define-public snakemake
|
||||||
(package
|
(package
|
||||||
(name "snakemake")
|
(name "snakemake")
|
||||||
|
|
Loading…
Reference in a new issue