summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyramid_jinja2/default.nix
blob: d211b9daf3347ddeac5d29903dbe334539efb736 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv
, buildPythonPackage
, fetchPypi
, webtest
, jinja2
, pyramid
}:

buildPythonPackage rec {
  pname = "pyramid_jinja2";
  version = "2.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "93c86e3103b454301f4d66640191aba047f2ab85ba75647aa18667b7448396bd";
  };

  buildInputs = [ webtest ];
  propagatedBuildInputs = [ jinja2 pyramid ];

  meta = with stdenv.lib; {
    description = "Jinja2 template bindings for the Pyramid web framework";
    homepage = https://github.com/Pylons/pyramid_jinja2;
    license = licenses.bsd0;
    maintainers = with maintainers; [ domenkozar ];
  };

}