My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/kajiki/default.nix

28 lines
553 B

{ 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;
};
}