diff options
author | Brendan Tildesley <mail@brendan.scot> | 2021-02-27 23:06:09 +1100 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-04-09 16:09:26 -0400 |
commit | 065f2cceb7090e209a7f2c88a4f5385048dbdccf (patch) | |
tree | 4747f2d584423a3d8ab0fd7c209e7e56f2548cb7 /gnu/packages | |
parent | 141e74a83078e1c27ed9b1b7f24783aabf846bca (diff) | |
download | guix-065f2cceb7090e209a7f2c88a4f5385048dbdccf.tar.gz guix-065f2cceb7090e209a7f2c88a4f5385048dbdccf.zip |
gnu: python-html5lib: Depend on python-chardet.
* gnu/packages/python-web.scm (python-html5lib)[propagated-inputs]: Add
python-chardet.
Diffstat (limited to 'gnu/packages')
-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 c7dd18ad19..c79fa1bfc4 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1102,7 +1102,9 @@ storage.") (build-system python-build-system) (propagated-inputs `(("python-six" ,python-six) - ("python-webencodings" ,python-webencodings))) + ("python-webencodings" ,python-webencodings) + ;; Required by Calibre 5. + ("python-chardet" ,python-chardet))) (arguments `(#:test-target "check")) (home-page |