about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/cheetah3/default.nix
blob: 01a6948e3cacf5d8da1eca186dc6b99b5a844542 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "Cheetah3";
  version = "3.2.6.post2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "63157d7a00a273b59676b5be5aa817c75c37efc88478231f1a160f4cfb7f7878";
  };

  doCheck = false; # Circular dependency

  meta = with lib; {
    homepage = "http://www.cheetahtemplate.org/";
    description = "A template engine and code generation tool";
    license = licenses.mit;
    maintainers = with maintainers; [ pjjw ];
  };
}