gnu: Add python-toposort.

* gnu/packages/python-xyz.scm (python-toposort): New variable.
This commit is contained in:
Ricardo Wurmus 2021-03-16 14:17:07 +01:00
parent fa0a18522d
commit 08447ab7cd
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -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")