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

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

29 lines
616 B
Nix
Raw Normal View History

2023-03-13 15:12:21 +00:00
{ lib
, buildPythonApplication
, fetchFromGitHub
, pythonOlder
}:
buildPythonApplication rec {
pname = "djhtml";
2024-01-24 13:45:43 +00:00
version = "3.0.6";
2023-03-13 15:12:21 +00:00
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "rtts";
repo = pname;
2024-01-24 13:45:43 +00:00
rev = "refs/tags/${version}";
hash = "sha256-3bviLyTLpHcAUWAaAmNZukWBDwFs8yFOAxl2bSk9GNY=";
2023-03-13 15:12:21 +00:00
};
pythonImportsCheck = [ "djhtml" ];
meta = with lib; {
homepage = "https://github.com/rtts/djhtml";
description = "Django/Jinja template indenter";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ thubrecht ];
};
}