1{ lib
2, buildPythonPackage
3, fetchPypi
4, paste
5, six
6, isPy3k
7}:
8
9buildPythonPackage rec {
10 pname = "WSGIProxy";
11 version = "0.2.2";
12 disabled = isPy3k; # Judging from SyntaxError
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "0wqz1q8cvb81a37gb4kkxxpv4w7k8192a08qzyz67rn68ln2wcig";
17 };
18
19 propagatedBuildInputs = [ paste six ];
20
21 meta = with lib; {
22 description = "WSGIProxy gives tools to proxy arbitrary(ish) WSGI requests to other";
23 homepage = "http://pythonpaste.org/wsgiproxy/";
24 license = licenses.mit;
25 };
26
27}