nixpkgs/pkgs/development/tools/djlint/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
998 B
Nix
Raw Normal View History

2023-08-19 08:24:07 +00:00
{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "djlint";
2023-12-28 11:28:40 +00:00
version = "1.34.1";
pyproject = true;
2023-08-19 08:24:07 +00:00
src = fetchFromGitHub {
owner = "Riverside-Healthcare";
repo = "djlint";
2024-01-18 15:13:13 +00:00
rev = "refs/tags/v${version}";
2023-12-28 11:28:40 +00:00
hash = "sha256-p9RIzX9zoZxBrhiNaIeCX9OgfQm/lXNwYsh6IcsnIVk=";
2023-08-19 08:24:07 +00:00
};
2024-01-18 15:13:13 +00:00
nativeBuildInputs = with python3.pkgs; [
poetry-core
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"pathspec"
2023-08-19 08:24:07 +00:00
];
propagatedBuildInputs = with python3.pkgs; [
click
colorama
cssbeautifier
html-tag-names
html-void-elements
jsbeautifier
json5
pathspec
pyyaml
regex
tomli
tqdm
];
pythonImportsCheck = [ "djlint" ];
meta = with lib; {
description = "HTML Template Linter and Formatter. Django - Jinja - Nunjucks - Handlebars - GoLang";
homepage = "https://github.com/Riverside-Healthcare/djlint";
license = licenses.gpl3Only;
maintainers = with maintainers; [ traxys ];
};
}