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