1{ lib 2, buildPythonPackage 3, fetchPypi 4, six 5, webob 6}: 7 8buildPythonPackage rec { 9 pname = "WSGIProxy2"; 10 version = "0.4.2"; 11 12 src = fetchPypi { 13 inherit pname version; 14 extension = "zip"; 15 sha256 = "13kf9bdxrc95y9vriaz0viry3ah11nz4rlrykcfvb8nlqpx3dcm4"; 16 }; 17 18 propagatedBuildInputs = [ six webob ]; 19 20 # circular dep on webtest 21 doCheck = false; 22 23 meta = with lib; { 24 homepage = "http://pythonpaste.org/wsgiproxy/"; 25 description = "HTTP proxying tools for WSGI apps"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ domenkozar ]; 28 }; 29 30}