depot/third_party/nixpkgs/pkgs/development/python-modules/beautifulsoup4/default.nix
Default email 889482aab3 Project import generated by Copybara.
GitOrigin-RevId: f2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5
2022-06-26 12:26:21 +02:00

51 lines
833 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, chardet
, html5lib
, lxml
, pytestCheckHook
, pythonOlder
, soupsieve
, sphinxHook
}:
buildPythonPackage rec {
pname = "beautifulsoup4";
version = "4.11.1";
format = "setuptools";
outputs = ["out" "doc"];
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-rZqlW2XvKAjrQF9Gz3Tff8twRNXLwmSH+W6y7y5DZpM=";
};
nativeBuildInputs = [
sphinxHook
];
propagatedBuildInputs = [
chardet
html5lib
lxml
soupsieve
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"bs4"
];
meta = with lib; {
homepage = "http://crummy.com/software/BeautifulSoup/bs4/";
description = "HTML and XML parser";
license = licenses.mit;
maintainers = with maintainers; [ domenkozar ];
};
}