nixpkgs/pkgs/development/python-modules/pyramid_mako/default.nix
2020-04-10 17:54:53 +01:00

28 lines
550 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;
};
}