python3Packages.beautifulsoup4: propagate chardet

Fixes the tests by making the package use chardet.
This commit is contained in:
Martin Weinelt 2022-06-05 22:07:38 +02:00 committed by Jonathan Ringer
parent 77cf0414e4
commit 665aec3e7f
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, chardet
, html5lib
, lxml
, pytestCheckHook
@ -22,7 +23,12 @@ buildPythonPackage rec {
hash = "sha256-rZqlW2XvKAjrQF9Gz3Tff8twRNXLwmSH+W6y7y5DZpM=";
};
nativeBuildInputs = [
sphinxHook
];
propagatedBuildInputs = [
chardet
html5lib
lxml
soupsieve
@ -31,7 +37,6 @@ buildPythonPackage rec {
checkInputs = [
pytestCheckHook
];
nativeBuildInputs = [ sphinxHook ];
pythonImportsCheck = [
"bs4"