24 buildPythonPackage rec {
25 pname = "beautifulsoup4";
34 disabled = pythonOlder "3.6";
37 inherit pname version;
38 hash = "sha256-dOPRko7cBw0hdIGFxG4/szSQ8i9So63e6a7g9Pd4EFE=";
44 url = "https://git.launchpad.net/beautifulsoup/patch/?id=9786a62726de5a8caba10021c4d4a58c8a3e9e3f";
45 hash = "sha256-FOMoJjT0RgqKjbTLN/qCuc0HjhKeenMcgwb9Fp8atAY=";
54 propagatedBuildInputs = [
59 optional-dependencies = {
60 html5lib = [ html5lib ];
66 ] ++ lib.flatten (builtins.attrValues optional-dependencies);
68 pythonImportsCheck = [ "bs4" ];
82 changelog = "https://git.launchpad.net/beautifulsoup/tree/CHANGELOG?h=${version}";
83 description = "HTML and XML parser";
84 homepage = "http://crummy.com/software/BeautifulSoup/bs4/";
85 license = licenses.mit;
86 maintainers = with maintainers; [ domenkozar ];