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