94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
62 lines
1.1 KiB
Nix
62 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, chardet
|
|
, hatchling
|
|
, html5lib
|
|
, lxml
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, soupsieve
|
|
, sphinxHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "beautifulsoup4";
|
|
version = "4.12.2";
|
|
format = "pyproject";
|
|
|
|
outputs = ["out" "doc"];
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-SSu8adyjXRLarHHE2xv/8Mh2wA70ov+sziJtRjjrcto=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
hatchling
|
|
sphinxHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
chardet
|
|
soupsieve
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
html5lib = [
|
|
html5lib
|
|
];
|
|
lxml = [
|
|
lxml
|
|
];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
|
|
|
|
pythonImportsCheck = [
|
|
"bs4"
|
|
];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://git.launchpad.net/beautifulsoup/tree/CHANGELOG?h=${version}";
|
|
description = "HTML and XML parser";
|
|
homepage = "http://crummy.com/software/BeautifulSoup/bs4/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ domenkozar ];
|
|
};
|
|
}
|