Merge pull request #309017 from fabaff/types-beautifulsoup4-bump

python312Packages.types-beautifulsoup4: 4.12.0.20240229 -> 4.12.0.20240504
This commit is contained in:
Fabian Affolter 2024-05-04 15:30:19 +02:00 committed by GitHub
commit 61d8d043a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,29 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
, types-html5lib
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
types-html5lib,
}:
buildPythonPackage rec {
pname = "types-beautifulsoup4";
version = "4.12.0.20240229";
format = "setuptools";
version = "4.12.0.20240504";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-435M+hGwOwF3VzLlbSwBDLJO4Qd4Yne65rwPo+MFtoY=";
hash = "sha256-17evTMxS/CJ4TTOlKWleNDKam91dtqZJybJcssOhSNU=";
};
propagatedBuildInputs = [
types-html5lib
];
build-system = [ setuptools ];
dependencies = [ types-html5lib ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"bs4-stubs"
];
pythonImportsCheck = [ "bs4-stubs" ];
meta = with lib; {
description = "Typing stubs for beautifulsoup4";