about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/cheetah3/default.nix
blob: a705bffa810a0dd21e5bbed3dae046bf311ef207 (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";

  src = fetchPypi {
    inherit pname version;
    sha256 = "f1c2b693cdcac2ded2823d363f8459ae785261e61c128d68464c8781dba0466b";
  };

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