12 buildPythonPackage rec {
17 inherit pname version;
18 sha256 = "b2e5b40261e20f354d198eae92afc10d750afb487ed5e50f9c4eaf07c184146f";
21 checkInputs = [ flake8 pytest_4 pytest-expect mock ];
22 propagatedBuildInputs = [
27 # remove test causing error
28 # https://github.com/html5lib/html5lib-python/issues/411
29 rm html5lib/tests/test_stream.py
34 homepage = "https://github.com/html5lib/html5lib-python";
35 downloadPage = "https://github.com/html5lib/html5lib-python/releases";
36 description = "HTML parser based on WHAT-WG HTML5 specification";
38 html5lib is a pure-python library for parsing HTML. It is designed to
39 conform to the WHATWG HTML specification, as is implemented by all
42 license = lib.licenses.mit;
43 maintainers = with lib.maintainers; [ domenkozar prikhi ];