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

buildPythonPackage rec {
  pname = "Chameleon";
  version = "3.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0141kfwx553q73wzfl624pppmbhh7fpzvaj5pbj21pqlk2rhfx75";
  };

  meta = with stdenv.lib; {
    homepage = https://chameleon.readthedocs.io/;
    description = "Fast HTML/XML Template Compiler";
    license = licenses.bsd0;
    maintainers = with maintainers; [ garbas domenkozar ];
  };

}