python39Packages.beautifulsoup4: 4.10.0 -> 4.11.1

This commit is contained in:
Fabian Affolter 2022-04-26 23:48:39 +02:00
parent d123039b2e
commit b44556ea92

View file

@ -10,13 +10,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "beautifulsoup4"; pname = "beautifulsoup4";
version = "4.10.0"; version = "4.11.1";
format = "setuptools";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-wjrSPFIdgYlVpBUaZ9gVgDGdS/VI09SfQiOuBB/5iJE="; hash = "sha256-rZqlW2XvKAjrQF9Gz3Tff8twRNXLwmSH+W6y7y5DZpM=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -29,7 +30,9 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
pythonImportsCheck = [ "bs4" ]; pythonImportsCheck = [
"bs4"
];
meta = with lib; { meta = with lib; {
homepage = "http://crummy.com/software/BeautifulSoup/bs4/"; homepage = "http://crummy.com/software/BeautifulSoup/bs4/";