Commit dcf69ccc authored by traxys's avatar traxys
Browse files

python310Packages.html-tag-names: init at 0.1.2

parent df53ba2c
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
}:

buildPythonPackage rec {
  pname = "html-tag-names";
  version = "0.1.2";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "Riverside-Healthcare";
    repo = "html-tag-names";
    rev = version;
    hash = "sha256-2YywP4/0yocejuJwanC5g9BR7mcy5C+zMhCjNZ9FRH4=";
  };

  nativeBuildInputs = [
    poetry-core
  ];

  # has no tests
  doCheck = false;

  pythonImportsCheck = [ "HtmlTagNames" ];

  meta = with lib; {
    description = "List of known HTML tags";
    homepage = "https://github.com/Riverside-Healthcare/html-tag-names";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ traxys ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -4944,6 +4944,8 @@ self: super: with self; {

  html-sanitizer = callPackage ../development/python-modules/html-sanitizer { };

  html-tag-names = callPackage ../development/python-modules/html-tag-names { };

  html-text = callPackage ../development/python-modules/html-text { };

  htseq = callPackage ../development/python-modules/htseq { };