depot/third_party/nixpkgs/pkgs/development/python-modules/kajiki/default.nix
Default email 3cbfd2b52c Project import generated by Copybara.
GitOrigin-RevId: 395879c28386e1abf20c7ecacd45880759548391
2021-12-18 20:06:50 -05:00

28 lines
553 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, Babel
, pytz
, nine
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "kajiki";
version = "0.9.0";
src = fetchPypi {
inherit pname version;
sha256 = "f0d6dfa27eb2b6c0d2a28ae21d69dceb5363cc0432f4045bcc98aac42a662ccb";
};
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;
};
}