about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiohttp-jinja2/default.nix
blob: 4865901713a3225519f8b427cd0795a118a0c06c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, stdenv, buildPythonPackage, fetchPypi, aiohttp, jinja2, pytest, pytest-aiohttp }:

buildPythonPackage rec {
  pname = "aiohttp-jinja2";
  version = "0.17.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "8139c63fe989e140dceae378440680258dfb72f3301c79173945245299d795e6";
  };

  propagatedBuildInputs = [ aiohttp jinja2 ];

  checkInputs = [ pytest pytest-aiohttp ];

  checkPhase = ''
    py.test
  '';

  meta = with lib; {
    description = "Jinja2 support for aiohttp";
    homepage = https://github.com/aio-libs/aiohttp_jinja2;
    license = licenses.asl20;
    maintainers = with maintainers; [ peterhoeg ];
  };
}