diff options
author | Christopher Baines <mail@cbaines.net> | 2018-01-18 22:44:40 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-01-18 22:44:40 +0000 |
commit | ab3559fd13ce6013cec56a2c67984628d431ad1f (patch) | |
tree | 7e0983d7e13bb7ad192434fb4c4ada641330f3a2 | |
parent | 8180a40692614a97e48a398a5099f3b700f878db (diff) | |
download | guix-fix-awscli-help.tar guix-fix-awscli-help.tar.gz |
Fix awscli helpfix-awscli-help
-rw-r--r-- | gnu/packages/python-web.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 4e280b4590..c0be827d5e 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -47,6 +47,7 @@ #:use-module (gnu packages compression) #:use-module (gnu packages databases) #:use-module (gnu packages django) + #:use-module (gnu packages groff) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) #:use-module (gnu packages python-crypto) @@ -1231,7 +1232,8 @@ supports url redirection and retries, and also gzip and deflate decoding.") ("python-s3transfer" ,python-s3transfer) ("python-docutils" ,python-docutils) ("python-pyyaml" ,python-pyyaml) - ("python-rsa" ,python-rsa))) + ("python-rsa" ,python-rsa) + ("groff" ,groff))) (arguments ;; FIXME: The 'pypi' release does not contain tests. '(#:tests? #f)) |