about summary refs log tree commit diff
path: root/pkgs/development/python-modules/kajiki/default.nix
blob: b1b82f31d763f50ba232d8f4e15ed96b43c60bfb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv
, buildPythonPackage
, fetchPypi
, Babel
, pytz
, nine
, nose
}:

buildPythonPackage rec {
  pname = "Kajiki";
  version = "0.8.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "85202ff7c2ce2466e9da82f06b25d1d6753d411d0e1b3ab3b145ed1e04c46782";
  };

  propagatedBuildInputs = [ Babel pytz nine ];
  checkInputs = [ nose ];

  meta = with stdenv.lib; {
    description = "Kajiki provides fast well-formed XML templates";
    homepage = "https://github.com/nandoflorestan/kajiki";
    license = licenses.mit;
  };

}