My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pyramid_jinja2/default.nix

29 lines
633 B

{ lib
, buildPythonPackage
, fetchPypi
, webtest
, jinja2
, pyramid
}:
buildPythonPackage rec {
pname = "pyramid_jinja2";
version = "2.10";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-8nEGnZ6ay6x622kSGQqEj2M49+V6+68+lSN/6DzI9NI=";
};
buildInputs = [ webtest ];
propagatedBuildInputs = [ jinja2 pyramid ];
pythonImportsCheck = [ "pyramid_jinja2" ];
meta = with lib; {
description = "Jinja2 template bindings for the Pyramid web framework";
homepage = "https://github.com/Pylons/pyramid_jinja2";
license = licenses.bsd0;
maintainers = with maintainers; [ domenkozar ];
};
}