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

42 lines
1016 B
Nix
Raw Normal View History

{ lib, stdenv
, buildPythonPackage
, isPy3k
, fetchPypi
, pytest
, markupsafe
, setuptools
}:
buildPythonPackage rec {
pname = "Jinja2";
version = "2.11.3";
2018-02-03 00:46:08 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "a6d58433de0ae800347cab1fa3043cebbabe8baa9d29e668f1c768cb87a333c6";
};
2017-12-26 18:55:59 +00:00
checkInputs = [ pytest ];
propagatedBuildInputs = [ markupsafe setuptools ];
# Multiple tests run out of stack space on 32bit systems with python2.
# See https://github.com/pallets/jinja/issues/1158
doCheck = !stdenv.is32bit || isPy3k;
2017-12-26 18:55:59 +00:00
checkPhase = ''
2018-08-13 13:41:32 +01:00
pytest -v tests
2017-12-26 18:55:59 +00:00
'';
meta = with lib; {
homepage = "http://jinja.pocoo.org/";
description = "Stand-alone template engine";
license = licenses.bsd3;
longDescription = ''
Jinja2 is a template engine written in pure Python. It provides a
Django inspired non-XML syntax but supports inline expressions and
an optional sandboxed environment.
2017-12-26 18:55:59 +00:00
'';
maintainers = with maintainers; [ pierron sjourdois ];
};
}