diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-01-18 16:00:43 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-01-18 16:09:49 +0100 |
commit | 1778ea740e052a9a31151b2746d3bcce199ec3b4 (patch) | |
tree | 596f1596ced2a751d49a6bee2f2183d4c8b2223a | |
parent | 7c524e0f6b6759daace7bf37a7027f770a04296b (diff) | |
download | patches-1778ea740e052a9a31151b2746d3bcce199ec3b4.tar patches-1778ea740e052a9a31151b2746d3bcce199ec3b4.tar.gz |
gnu: multiqc: Add python-nose to inputs.
* gnu/packages/bioinformatics.scm (multiqc)[propagated-inputs]: Add
python-nose.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index c60bedce43..0a77ccfdf9 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -8024,7 +8024,9 @@ replacement for strverscmp.") ("python-pyyaml" ,python-pyyaml) ("python-click" ,python-click) ("python-matplotlib" ,python-matplotlib) - ("python-numpy" ,python-numpy))) + ("python-numpy" ,python-numpy) + ;; MultQC checks for the presence of nose at runtime. + ("python-nose" ,python-nose))) (home-page "http://multiqc.info") (synopsis "Aggregate bioinformatics analysis reports") (description |