biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / html-table-parser-python3 / default.nix
blobc4f3f8fc46aaf68aaae3c77ec50ce882a8074b8e
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   poetry-core,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "html-table-parser-python3";
11   version = "0.3.1";
12   pyproject = true;
14   src = fetchFromGitHub {
15     owner = "schmijos";
16     repo = "html-table-parser-python3";
17     rev = "v${version}";
18     hash = "sha256-okYl0T12wVld7GVbFQH2hgEVKXSScipJN/vYaiRVdGY=";
19   };
21   build-system = [ poetry-core ];
23   nativeCheckInputs = [ pytestCheckHook ];
25   pythonImportsCheck = [ "html_table_parser" ];
27   meta = {
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 ];
32   };