blob: 98f0b14ae5d62ad2ef1805c3d7bc419adfa9e764 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
types-webencodings,
}:
buildPythonPackage rec {
pname = "types-html5lib";
version = "1.1.11.20251117";
pyproject = true;
src = fetchPypi {
pname = "types_html5lib";
inherit version;
hash = "sha256-Gmo6xTlKoSv1R/rl1e/5Hc7sRrbQfENn2bOaN/QvIBo=";
};
build-system = [ setuptools ];
dependencies = [ types-webencodings ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "html5lib-stubs" ];
meta = {
description = "Typing stubs for html5lib";
homepage = "https://pypi.org/project/types-html5lib/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|