gnu: snakemake: Order inputs alphabetically.

* gnu/packages/python-xyz.scm (snakemake)[propagated-inputs]: Order.
This commit is contained in:
Tobias Geerinckx-Rice 2019-10-21 01:34:45 +02:00
parent 93803c6b61
commit 8994ae3453
No known key found for this signature in database
GPG key ID: D889B0F018C5493C

View file

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