biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / html-tag-names / default.nix
blobe61fee5d89abf7eb58f96ea40953ba0ac464b613
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   poetry-core,
6 }:
8 buildPythonPackage rec {
9   pname = "html-tag-names";
10   version = "0.1.2";
11   format = "pyproject";
13   src = fetchFromGitHub {
14     owner = "Riverside-Healthcare";
15     repo = "html-tag-names";
16     rev = version;
17     hash = "sha256-2YywP4/0yocejuJwanC5g9BR7mcy5C+zMhCjNZ9FRH4=";
18   };
20   nativeBuildInputs = [ poetry-core ];
22   # has no tests
23   doCheck = false;
25   pythonImportsCheck = [ "HtmlTagNames" ];
27   meta = with lib; {
28     description = "List of known HTML tags";
29     homepage = "https://github.com/Riverside-Healthcare/html-tag-names";
30     license = licenses.gpl3Only;
31     maintainers = with maintainers; [ traxys ];
32   };