summary refs log tree commit diff
path: root/pkgs/development/python-modules/chameleon/default.nix
blob: 96bd1aa8aaaf9a5b1d0741991adac80eda1de39a (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.7.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "37c01c9af720bc80a0097ebc07eb41e802917ad0006c9a77dc158479c087664b";
  };

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

}