summary refs log tree commit diff
path: root/pkgs/development/python-modules/wsgiproxy/default.nix
blob: 12aa3c88d968027db6a3c2662250725c117f5498 (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
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, paste
, six
, isPy3k
}:

buildPythonPackage rec {
  pname = "WSGIProxy";
  version = "0.2.2";
  disabled = isPy3k; # Judging from SyntaxError

  src = fetchPypi {
    inherit pname version;
    sha256 = "0wqz1q8cvb81a37gb4kkxxpv4w7k8192a08qzyz67rn68ln2wcig";
  };

  propagatedBuildInputs = [ paste six ];

  meta = with lib; {
    description = "WSGIProxy gives tools to proxy arbitrary(ish) WSGI requests to other";
    homepage = "http://pythonpaste.org/wsgiproxy/";
    license = licenses.mit;
  };

}