diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-07-27 15:07:26 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-07-27 15:30:38 +0200 |
commit | 269f100330cf92afdc911bbd7db0644719d6dc3f (patch) | |
tree | 1f4c503f0391631407bb8d182fc40455e7621405 | |
parent | 216a72a95738d6d643094f156000cbc006cd79f5 (diff) | |
download | guix-269f100330cf92afdc911bbd7db0644719d6dc3f.tar guix-269f100330cf92afdc911bbd7db0644719d6dc3f.tar.gz |
gnu: snakemake: Add missing dependencies.
* gnu/packages/python.scm (snakemake)[propagated-inputs]: Add python-datrie,
python-docutils, python-jinja2, python-jsonschema, and python-networkx.
-rw-r--r-- | gnu/packages/python.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 1422ad26a3..a6e3ebb9d6 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5191,6 +5191,11 @@ Python.") ("python-requests" ,python-requests) ("python-appdirs" ,python-appdirs) ("python-configargparse" ,python-configargparse) + ("python-datrie" ,python-datrie) + ("python-docutils" ,python-docutils) + ("python-jinja2" ,python-jinja2) + ("python-jsonschema" ,python-jsonschema) + ("python-networkx" ,python-networkx) ("python-pyyaml" ,python-pyyaml) ("python-ratelimiter" ,python-ratelimiter))) (home-page "https://bitbucket.org/snakemake/snakemake/wiki/Home") |