1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, Babel
5, pytz
6, nine
7, nose
8}:
9
10buildPythonPackage rec {
11 pname = "Kajiki";
12 version = "0.8.2";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "bbec46b19285d42769d7c4f5a8a0195b72a62b54cd360a26a8875319d58efef6";
17 };
18
19 propagatedBuildInputs = [ Babel pytz nine ];
20 checkInputs = [ nose ];
21
22 meta = with stdenv.lib; {
23 description = "Kajiki provides fast well-formed XML templates";
24 homepage = "https://github.com/nandoflorestan/kajiki";
25 license = licenses.mit;
26 };
27
28}