nixpkgs/pkgs/development/python-modules/pyramid_mako/default.nix

28 lines
548 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, webtest
, pyramid
, Mako
}:
buildPythonPackage rec {
pname = "pyramid_mako";
2018-11-04 10:35:13 +00:00
version = "1.0.2";
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:13 +00:00
sha256 = "6da0987b9874cf53e72139624665a73965bbd7fbde504d1753e4231ce916f3a1";
};
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;
};
}