Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / html-void-elements / default.nix
blobbef3d920802660304e3d46f78bfad46da8f2db82
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , poetry-core
5 }:
7 buildPythonPackage rec {
8   pname = "html-void-elements";
9   version = "0.1.0";
10   format = "pyproject";
12   src = fetchFromGitHub {
13     owner = "Riverside-Healthcare";
14     repo = "html-void-elements";
15     rev = version;
16     hash = "sha256-Q5OEczTdgCCyoOsKv3MKRE3w4t/qyPG4YKbF19jlC88=";
17   };
19   nativeBuildInputs = [
20     poetry-core
21   ];
23   # has no tests
24   doCheck = false;
26   pythonImportsCheck = [ "HtmlVoidElements" ];
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   };