{ lib , buildPythonPackage , fetchPypi , setuptools }: buildPythonPackage rec { pname = "types-html5lib"; version = "1.1.11.20240217"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-58YJ/Bz9M7ZmxRXRXKKJNjWcWlbQs41aYma/L1HK9Ow="; }; nativeBuildInputs = [ setuptools ]; # Module has no tests doCheck = false; pythonImportsCheck = [ "html5lib-stubs" ]; meta = with lib; { description = "Typing stubs for html5lib"; homepage = "https://pypi.org/project/types-html5lib/"; license = with licenses; [ asl20 ]; maintainers = with maintainers; [ fab ]; }; }