2018-07-20 17:44:44 -07:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, aiohttp, jinja2, pytest, pytest-aiohttp }:
|
2018-02-27 18:01:19 -08:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aiohttp-jinja2";
|
2020-11-29 06:04:22 -08:00
|
|
|
version = "1.4.2";
|
2018-02-27 18:01:19 -08:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-29 06:04:22 -08:00
|
|
|
sha256 = "9c22a0e48e3b277fc145c67dd8c3b8f609dab36bce9eb337f70dfe716663c9a0";
|
2018-02-27 18:01:19 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ aiohttp jinja2 ];
|
|
|
|
|
|
|
|
checkInputs = [ pytest pytest-aiohttp ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
2020-08-05 13:50:56 -07:00
|
|
|
pytest -W ignore::DeprecationWarning
|
2018-02-27 18:01:19 -08:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Jinja2 support for aiohttp";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/aio-libs/aiohttp_jinja2";
|
2018-02-27 18:01:19 -08:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
};
|
|
|
|
}
|