depot/third_party/nixpkgs/pkgs/development/tools/djlint/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

51 lines
998 B
Nix

{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "djlint";
version = "1.34.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Riverside-Healthcare";
repo = "djlint";
rev = "refs/tags/v${version}";
hash = "sha256-p9RIzX9zoZxBrhiNaIeCX9OgfQm/lXNwYsh6IcsnIVk=";
};
build-system = with python3.pkgs; [
poetry-core
];
pythonRelaxDeps = [
"pathspec"
"regex"
];
dependencies = with python3.pkgs; [
click
colorama
cssbeautifier
html-tag-names
html-void-elements
jsbeautifier
json5
pathspec
pyyaml
regex
tomli
tqdm
];
pythonImportsCheck = [ "djlint" ];
meta = {
description = "HTML Template Linter and Formatter. Django - Jinja - Nunjucks - Handlebars - GoLang";
mainProgram = "djlint";
homepage = "https://github.com/Riverside-Healthcare/djlint";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ traxys ];
};
}