Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / types-html5lib / default.nix
blob843b1a108c851258c24c4f83ce3a6f9246e1f64a
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "types-html5lib";
8   version = "1.1.11.15";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-gOGiBi0io6/+XCjZfaML/786B205PID8bxZxIWwb1JI=";
14   };
16   # Module has no tests
17   doCheck = false;
19   pythonImportsCheck = [
20     "html5lib-stubs"
21   ];
23   meta = with lib; {
24     description = "Typing stubs for html5lib";
25     homepage = "https://pypi.org/project/types-html5lib/";
26     license = with licenses; [ asl20 ];
27     maintainers = with maintainers; [ fab ];
28   };