pythonPAckages.webapp2: init at 2.5.2

This commit is contained in:
Chris Ostrouchov 2018-11-02 15:30:28 -04:00
parent aeba5b010c
commit 9887696cae
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, webob
, six
, jinja2
}:
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 stdenv.lib; {
description = "Taking Google App Engine's webapp to the next level";
homepage = http://webapp-improved.appspot.com;
license = licenses.asl20;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -716,6 +716,8 @@ in {
vidstab = callPackage ../development/python-modules/vidstab { };
webapp2 = callPackage ../development/python-modules/webapp2 { };
pyunbound = callPackage ../tools/networking/unbound/python.nix { };
WazeRouteCalculator = callPackage ../development/python-modules/WazeRouteCalculator { };