mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
python310Packages.html-tag-names: init at 0.1.2
This commit is contained in:
parent
df53ba2ca0
commit
dcf69ccc4f
34
pkgs/development/python-modules/html-tag-names/default.nix
Normal file
34
pkgs/development/python-modules/html-tag-names/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user