superfile: 1.1.6 -> 1.1.7 (#371308)
[NixPkgs.git] / pkgs / development / python-modules / types-beautifulsoup4 / default.nix
blob17cc87e26b01fbd07493e035c0a00370781feae2
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   types-html5lib,
7 }:
9 buildPythonPackage rec {
10   pname = "types-beautifulsoup4";
11   version = "4.12.0.20241020";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-FYNw0I0M1Ei9EbEypQ/1J5I3pdS1g3vroHTeFSpRMFk=";
17   };
19   build-system = [ setuptools ];
21   dependencies = [ types-html5lib ];
23   # Module has no tests
24   doCheck = false;
26   pythonImportsCheck = [ "bs4-stubs" ];
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   };