summary refs log tree commit diff
path: root/pkgs/development/python-modules/pecan/default.nix
blob: c6c5b99d980691f70b531c2a0cb730dceb6377cc (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
27
28
29
30
31
32
33
34
35
{ stdenv
, fetchPypi
, buildPythonPackage
# Python deps
, singledispatch
, logutils
, webtest
, Mako
, genshi
, Kajiki
, sqlalchemy
, gunicorn
, jinja2
, virtualenv
}:

buildPythonPackage rec {
  pname = "pecan";
  version = "1.3.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "24f06cf88a488b75f433e62b33c1c97e4575d0cd91eec9eec841a81cecfd6de3";
  };

  propagatedBuildInputs = [ singledispatch logutils ];
  buildInputs = [
    webtest Mako genshi Kajiki sqlalchemy gunicorn jinja2 virtualenv
  ];

  meta = with stdenv.lib; {
    description = "Pecan";
    homepage = "https://github.com/pecan/pecan";
  };
}