about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/TurboCheetah/default.nix
blob: 717b2b5f2780190b37968954d5fd67b109b26aeb (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
{ lib
, buildPythonPackage
, fetchPypi
, cheetah
, nose
}:

buildPythonPackage rec {
  pname = "TurboCheetah";
  version = "1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "9e4c7ecb0d061bfb58281363ee1b09337083f013a8b4d0355326a5d8668f450c";
  };

  propagatedBuildInputs = [ cheetah ];

  checkInputs = [ nose ];

  meta = {
    description = "TurboGears plugin to support use of Cheetah templates";
    homepage = "http://docs.turbogears.org/TurboCheetah";
    license = lib.licenses.mit;
  };
}