nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

djhtml: init at 3.0.5

+36
+6
maintainers/maintainer-list.nix
··· 15038 15038 githubId = 1391883; 15039 15039 name = "Tom Hall"; 15040 15040 }; 15041 + thubrecht = { 15042 + email = "tom@hubrecht.ovh"; 15043 + github = "Tom-Hubrecht"; 15044 + githubId = 26650391; 15045 + name = "Tom Hubrecht"; 15046 + }; 15041 15047 Thunderbottom = { 15042 15048 email = "chinmaydpai@gmail.com"; 15043 15049 github = "Thunderbottom";
+28
pkgs/development/tools/djhtml/default.nix
··· 1 + { lib 2 + , buildPythonApplication 3 + , fetchFromGitHub 4 + , pythonOlder 5 + }: 6 + buildPythonApplication rec { 7 + pname = "djhtml"; 8 + version = "3.0.5"; 9 + 10 + format = "setuptools"; 11 + disabled = pythonOlder "3.7"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "rtts"; 15 + repo = pname; 16 + rev = version; 17 + hash = "sha256-m13lw1x+URAYuDc0gXRIxfRnd6kQxeAuLDqYXeOgQE0="; 18 + }; 19 + 20 + pythonImportsCheck = [ "djhtml" ]; 21 + 22 + meta = with lib; { 23 + homepage = "https://github.com/rtts/djhtml"; 24 + description = "Django/Jinja template indenter"; 25 + license = licenses.gpl3Plus; 26 + maintainers = with maintainers; [ thubrecht ]; 27 + }; 28 + }
+2
pkgs/top-level/all-packages.nix
··· 488 488 489 489 dinghy = with python3Packages; toPythonApplication dinghy; 490 490 491 + djhtml = callPackage ../development/tools/djhtml { }; 492 + 491 493 deadcode = callPackage ../development/tools/deadcode { }; 492 494 493 495 deadnix = callPackage ../development/tools/deadnix { };