mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
29 lines
616 B
Nix
29 lines
616 B
Nix
{ lib
|
|
, buildPythonApplication
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
}:
|
|
buildPythonApplication rec {
|
|
pname = "djhtml";
|
|
version = "3.0.6";
|
|
|
|
format = "setuptools";
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rtts";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-3bviLyTLpHcAUWAaAmNZukWBDwFs8yFOAxl2bSk9GNY=";
|
|
};
|
|
|
|
pythonImportsCheck = [ "djhtml" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/rtts/djhtml";
|
|
description = "Django/Jinja template indenter";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ thubrecht ];
|
|
};
|
|
}
|