python312Packages.html-table-parser-python3: init at 0.3.1

This commit is contained in:
Pyrox
2024-07-29 17:30:03 -04:00
parent 7a14a916f8
commit e45bce4ecf
2 changed files with 35 additions and 0 deletions
@@ -0,0 +1,33 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "html-table-parser-python3";
version = "0.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "schmijos";
repo = "html-table-parser-python3";
rev = "v${version}";
hash = "sha256-okYl0T12wVld7GVbFQH2hgEVKXSScipJN/vYaiRVdGY=";
};
build-system = [ poetry-core ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "html_table_parser" ];
meta = {
description = "Small and simple HTML table parser not requiring any external dependency.";
homepage = "https://github.com/schmijos/html-table-parser-python3";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ pyrox0 ];
};
}
+2
View File
@@ -5642,6 +5642,8 @@ self: super: with self; {
html-sanitizer = callPackage ../development/python-modules/html-sanitizer { };
html-table-parser-python3 = callPackage ../development/python-modules/html-table-parser-python3 { };
html-tag-names = callPackage ../development/python-modules/html-tag-names { };
html-text = callPackage ../development/python-modules/html-text { };