mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
52 lines
1.0 KiB
Nix
52 lines
1.0 KiB
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";
|
|
mainProgram = "djlint";
|
|
homepage = "https://github.com/Riverside-Healthcare/djlint";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ traxys ];
|
|
};
|
|
}
|