nixpkgs/pkgs/development/tools/djlint/default.nix
2024-01-18 16:13:13 +01: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=";
};
nativeBuildInputs = with python3.pkgs; [
poetry-core
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"pathspec"
];
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 ];
};
}