python3Packages.beautifulsoup4: propagate chardet

Fixes the tests by making the package use chardet.
main
Martin Weinelt 2 years ago committed by Jonathan Ringer
parent 77cf0414e4
commit 665aec3e7f
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0
  1. 7
      pkgs/development/python-modules/beautifulsoup4/default.nix

@ -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"

Loading…
Cancel
Save