diff options
| author | Pyrox <pyrox@pyrox.dev> | 2024-07-29 16:53:08 -0400 |
|---|---|---|
| committer | Pyrox <pyrox@pyrox.dev> | 2024-07-29 17:30:03 -0400 |
| commit | e45bce4ecf9f8df8a51ab6b9d35b6df8d2537e86 (patch) | |
| tree | 977a43c8ab29e3cf6543dfd71d36305ed184afbe /pkgs/development/python-modules/html-table-parser-python3 | |
| parent | 7a14a916f856dc4acda391a9febc3bfb37f2a732 (diff) | |
python312Packages.html-table-parser-python3: init at 0.3.1
Diffstat (limited to 'pkgs/development/python-modules/html-table-parser-python3')
| -rw-r--r-- | pkgs/development/python-modules/html-table-parser-python3/default.nix | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/html-table-parser-python3/default.nix b/pkgs/development/python-modules/html-table-parser-python3/default.nix new file mode 100644 index 000000000000..c4f3f8fc46aa --- /dev/null +++ b/pkgs/development/python-modules/html-table-parser-python3/default.nix @@ -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 ]; + }; +} |
