Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / wsgiproxy / default.nix
blobe2cc26ff143ee93c697a6523b0e39b7e38bd911c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , paste
5 , six
6 , isPy3k
7 }:
9 buildPythonPackage rec {
10   pname = "WSGIProxy";
11   version = "0.2.2";
12   disabled = isPy3k; # Judging from SyntaxError
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "0wqz1q8cvb81a37gb4kkxxpv4w7k8192a08qzyz67rn68ln2wcig";
17   };
19   propagatedBuildInputs = [ paste six ];
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   };