diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-08-16 11:24:23 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-08-16 11:24:23 +0200 |
commit | c2429ca4abb71503ad49990e47d140b2d157c516 (patch) | |
tree | fa9fe378e38e3058726f7e32feb9fba4241dadb1 /gnu | |
parent | c16341bb9e6bc6751473668afee5022eb287b1e1 (diff) | |
download | guix-c2429ca4abb71503ad49990e47d140b2d157c516.tar.gz |
gnu: python-html5-parser: Fix build.
* gnu/packages/python-web.scm (python-html5-parser)[propagated-inputs]: Add python-chardet.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-web.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index be75f03a43..91b68cf5f4 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1177,7 +1177,8 @@ and written in Python.") `(("libxml2" ,libxml2))) (propagated-inputs `(("python-lxml" ,python-lxml) - ("python-beautifulsoup4" ,python-beautifulsoup4))) + ("python-beautifulsoup4" ,python-beautifulsoup4) + ("python-chardet" ,python-chardet))) (home-page "https://html5-parser.readthedocs.io") (synopsis "Fast C-based HTML5 parsing for Python") (description "This package provides a fast implementation of the HTML5 |