1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4, babel 5, pytz 6, nine 7, pytestCheckHook 8}: 9 10buildPythonPackage rec { 11 pname = "kajiki"; 12 version = "0.9.1"; 13 14 src = fetchFromGitHub { 15 owner = "jackrosenthal"; 16 repo = pname; 17 rev = "v${version}"; 18 sha256 = "sha256-bdQBVFHRB408/7X9y+3+fpllhymFRsdv/MEPTVjJh2E="; 19 }; 20 21 propagatedBuildInputs = [ babel pytz nine ]; 22 23 checkInputs = [ pytestCheckHook ]; 24 25 meta = with lib; { 26 description = "Kajiki provides fast well-formed XML templates"; 27 homepage = "https://github.com/nandoflorestan/kajiki"; 28 license = licenses.mit; 29 maintainers = with maintainers; [ onny ]; 30 }; 31 32}