depot/third_party/nixpkgs/pkgs/development/python-modules/kajiki/default.nix
Default email 13da32182d Project import generated by Copybara.
GitOrigin-RevId: a7855f2235a1876f97473a76151fec2afa02b287
2022-08-21 15:32:41 +02:00

32 lines
644 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, babel
, pytz
, nine
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "kajiki";
version = "0.9.1";
src = fetchFromGitHub {
owner = "jackrosenthal";
repo = pname;
rev = "v${version}";
sha256 = "sha256-bdQBVFHRB408/7X9y+3+fpllhymFRsdv/MEPTVjJh2E=";
};
propagatedBuildInputs = [ babel pytz nine ];
checkInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Kajiki provides fast well-formed XML templates";
homepage = "https://github.com/nandoflorestan/kajiki";
license = licenses.mit;
maintainers = with maintainers; [ onny ];
};
}