nixpkgs/pkgs/development/python-modules/pyramid_mako/default.nix
2021-02-17 14:11:43 +01:00

28 lines
579 B
Nix

{ lib
, 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 lib; {
homepage = "https://github.com/Pylons/pyramid_mako";
description = "Mako template bindings for the Pyramid web framework";
license = licenses.bsd0;
maintainers = with maintainers; [];
};
}