9 buildPythonPackage rec {
10 pname = "html-table-parser-python3";
14 src = fetchFromGitHub {
16 repo = "html-table-parser-python3";
18 hash = "sha256-okYl0T12wVld7GVbFQH2hgEVKXSScipJN/vYaiRVdGY=";
21 build-system = [ poetry-core ];
23 nativeCheckInputs = [ pytestCheckHook ];
25 pythonImportsCheck = [ "html_table_parser" ];
28 description = "Small and simple HTML table parser not requiring any external dependency.";
29 homepage = "https://github.com/schmijos/html-table-parser-python3";
30 license = lib.licenses.agpl3Only;
31 maintainers = with lib.maintainers; [ pyrox0 ];