1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4, poetry-core
5}:
6
7buildPythonPackage rec {
8 pname = "html-void-elements";
9 version = "0.1.0";
10 format = "pyproject";
11
12 src = fetchFromGitHub {
13 owner = "Riverside-Healthcare";
14 repo = "html-void-elements";
15 rev = version;
16 hash = "sha256-Q5OEczTdgCCyoOsKv3MKRE3w4t/qyPG4YKbF19jlC88=";
17 };
18
19 nativeBuildInputs = [
20 poetry-core
21 ];
22
23 # has no tests
24 doCheck = false;
25
26 pythonImportsCheck = [ "HtmlVoidElements" ];
27
28 meta = with lib; {
29 description = "List of HTML void tag names";
30 homepage = "https://github.com/Riverside-Healthcare/html-void-elements";
31 license = licenses.gpl3Only;
32 maintainers = with maintainers; [ traxys ];
33 };
34}