mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: snakemake: Order inputs alphabetically.
* gnu/packages/python-xyz.scm (snakemake)[propagated-inputs]: Order.
This commit is contained in:
parent
93803c6b61
commit
8994ae3453
1 changed files with 5 additions and 5 deletions
|
@ -6170,19 +6170,19 @@ (define-public snakemake
|
|||
"/bin/snakemake")))
|
||||
#t)))))
|
||||
(propagated-inputs
|
||||
`(("python-gitpython" ,python-gitpython)
|
||||
("python-wrapt" ,python-wrapt)
|
||||
("python-requests" ,python-requests)
|
||||
("python-appdirs" ,python-appdirs)
|
||||
`(("python-appdirs" ,python-appdirs)
|
||||
("python-configargparse" ,python-configargparse)
|
||||
("python-datrie" ,python-datrie)
|
||||
("python-docutils" ,python-docutils)
|
||||
("python-gitpython" ,python-gitpython)
|
||||
("python-jinja2" ,python-jinja2)
|
||||
("python-jsonschema" ,python-jsonschema)
|
||||
("python-networkx" ,python-networkx)
|
||||
("python-psutil" ,python-psutil)
|
||||
("python-pyyaml" ,python-pyyaml)
|
||||
("python-ratelimiter" ,python-ratelimiter)))
|
||||
("python-ratelimiter" ,python-ratelimiter)
|
||||
("python-requests" ,python-requests)
|
||||
("python-wrapt" ,python-wrapt)))
|
||||
(home-page "https://snakemake.readthedocs.io")
|
||||
(synopsis "Python-based execution environment for make-like workflows")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue