summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyramid_mako/default.nix
blob: 2752ba7641ebc15de4793972dda110976f1df599 (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
{ stdenv
, buildPythonPackage
, fetchPypi
, webtest
, pyramid
, Mako
}:

buildPythonPackage rec {
  pname = "pyramid_mako";
  version = "0.3.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "00811djmsc4rz20kpy2paam05fbx6dmrv2i5jf90f6xp6zw4isy6";
  };

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

  meta = with stdenv.lib; {
    homepage = https://github.com/Pylons/pyramid_mako;
    description = "Mako template bindings for the Pyramid web framework";
    license = licenses.bsd0;
  };

}