Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / types-beautifulsoup4 / default.nix
blob790692362677955399d1fedb9d7ae9c3b7ac94a6
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , types-html5lib
5 }:
7 buildPythonPackage rec {
8   pname = "types-beautifulsoup4";
9   version = "4.12.0.7";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-WZgAKNKb9V0Ns1nvowW3W6zwy5Lj8/az/UCPJTHfJ0w=";
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   };