1{ lib
2, buildPythonPackage
3, fetchPypi
4, webob
5, six
6}:
7
8buildPythonPackage rec {
9 pname = "webapp2";
10 version = "2.5.2";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "997db622a266bd64eb7fcc9cfe823efb69277544aa92064030c16acbfb2733a5";
15 };
16
17 # # error in tests when running with python 3+
18 doCheck = false;
19
20 propagatedBuildInputs = [ webob six ];
21
22 meta = with lib; {
23 description = "Taking Google App Engine's webapp to the next level";
24 homepage = "http://webapp-improved.appspot.com";
25 license = licenses.asl20;
26 maintainers = [ maintainers.costrouc ];
27 };
28}