blob: 3cce64266afb121e4ef1f47d78a13a00160da739 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
}:
buildPythonPackage rec {
pname = "html-tag-names";
version = "0.1.2";
pyproject = true;
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 = {
description = "List of known HTML tags";
homepage = "https://github.com/Riverside-Healthcare/html-tag-names";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ traxys ];
};
}
|