Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / types-beautifulsoup4 / default.nix
blob687dadc3eb65e60d4bb240dc0a56d5850423763e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , types-html5lib
5 }:
7 buildPythonPackage rec {
8   pname = "types-beautifulsoup4";
9   version = "4.12.0.20240229";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-435M+hGwOwF3VzLlbSwBDLJO4Qd4Yne65rwPo+MFtoY=";
15   };
17   propagatedBuildInputs = [
18     types-html5lib
19   ];
21   # Module has no tests
22   doCheck = false;
24   pythonImportsCheck = [
25     "bs4-stubs"
26   ];
28   meta = with lib; {
29     description = "Typing stubs for beautifulsoup4";
30     homepage = "https://pypi.org/project/types-beautifulsoup4/";
31     license = with licenses; [ asl20 ];
32     maintainers = with maintainers; [ fab ];
33   };