aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/chameleon/default.nix
blob: d522764c79910994d5533ed8f37930d7c95e2938 (plain)
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.8.1";

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

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

}