lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python2Packages.jinja2: reinit at 2.11.3

authored by

Martin Weinelt and committed by
Jonathan Ringer
78a54f47 8f0f9826

+43
+41
pkgs/development/python-modules/jinja2/2.nix
··· 1 + { lib, stdenv 2 + , buildPythonPackage 3 + , isPy3k 4 + , fetchPypi 5 + , pytest 6 + , markupsafe 7 + , setuptools 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "Jinja2"; 12 + version = "2.11.3"; 13 + 14 + src = fetchPypi { 15 + inherit pname version; 16 + sha256 = "a6d58433de0ae800347cab1fa3043cebbabe8baa9d29e668f1c768cb87a333c6"; 17 + }; 18 + 19 + checkInputs = [ pytest ]; 20 + propagatedBuildInputs = [ markupsafe setuptools ]; 21 + 22 + # Multiple tests run out of stack space on 32bit systems with python2. 23 + # See https://github.com/pallets/jinja/issues/1158 24 + doCheck = !stdenv.is32bit || isPy3k; 25 + 26 + checkPhase = '' 27 + pytest -v tests 28 + ''; 29 + 30 + meta = with lib; { 31 + homepage = "http://jinja.pocoo.org/"; 32 + description = "Stand-alone template engine"; 33 + license = licenses.bsd3; 34 + longDescription = '' 35 + Jinja2 is a template engine written in pure Python. It provides a 36 + Django inspired non-XML syntax but supports inline expressions and 37 + an optional sandboxed environment. 38 + ''; 39 + maintainers = with maintainers; [ pierron sjourdois ]; 40 + }; 41 + }
+2
pkgs/top-level/python2-packages.nix
··· 192 192 193 193 jaraco_stream = callPackage ../development/python-modules/jaraco_stream/2.nix { }; 194 194 195 + jinja2 = callPackage ../development/python-modules/jinja2/2.nix { }; 196 + 195 197 jsonrpclib = callPackage ../development/python-modules/jsonrpclib { }; 196 198 197 199 jupyter_client = callPackage ../development/python-modules/jupyter_client/5.nix { };