summary refs log tree commit diff
path: root/pkgs/development/python-modules/webapp2/default.nix
blob: 841fb5bd74b638f8349b740fcea9792a9abe0580 (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
{ lib
, buildPythonPackage
, fetchPypi
, webob
, six
}:

buildPythonPackage rec {
  pname = "webapp2";
  version = "2.5.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "997db622a266bd64eb7fcc9cfe823efb69277544aa92064030c16acbfb2733a5";
  };

  # # error in tests when running with python 3+
  doCheck = false;

  propagatedBuildInputs = [ webob six ];

  meta = with lib; {
    description = "Taking Google App Engine's webapp to the next level";
    homepage = "http://webapp-improved.appspot.com";
    license = licenses.asl20;
    maintainers = [ maintainers.costrouc ];
  };
}