1{ lib
2, buildPythonPackage
3, fetchPypi
4, webtest
5, pyramid
6, Mako
7}:
8
9buildPythonPackage rec {
10 pname = "pyramid_mako";
11 version = "1.1.0";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "0066c863441f1c3ddea60cee1ccc50d00a91a317a8052ca44131da1a12a840e2";
16 };
17
18 buildInputs = [ webtest ];
19 propagatedBuildInputs = [ pyramid Mako ];
20
21 meta = with lib; {
22 homepage = "https://github.com/Pylons/pyramid_mako";
23 description = "Mako template bindings for the Pyramid web framework";
24 license = licenses.bsd0;
25 maintainers = with maintainers; [];
26 # broken on pyramid>=2.0
27 # https://github.com/Pylons/pyramid_mako/issues/53
28 broken = true;
29 };
30}