Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 27 lines 548 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, webtest 5, pyramid 6, Mako 7}: 8 9buildPythonPackage rec { 10 pname = "pyramid_mako"; 11 version = "1.0.2"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "6da0987b9874cf53e72139624665a73965bbd7fbde504d1753e4231ce916f3a1"; 16 }; 17 18 buildInputs = [ webtest ]; 19 propagatedBuildInputs = [ pyramid Mako ]; 20 21 meta = with stdenv.lib; { 22 homepage = https://github.com/Pylons/pyramid_mako; 23 description = "Mako template bindings for the Pyramid web framework"; 24 license = licenses.bsd0; 25 }; 26 27}