mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
28 lines
548 B
Nix
28 lines
548 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, webtest
|
|
, pyramid
|
|
, Mako
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyramid_mako";
|
|
version = "1.1.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0066c863441f1c3ddea60cee1ccc50d00a91a317a8052ca44131da1a12a840e2";
|
|
};
|
|
|
|
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;
|
|
};
|
|
|
|
}
|