depot/third_party/nixpkgs/pkgs/development/python-modules/wsgiproxy/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

27 lines
557 B
Nix

{ 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 stdenv.lib; {
description = "WSGIProxy gives tools to proxy arbitrary(ish) WSGI requests to other";
homepage = "http://pythonpaste.org/wsgiproxy/";
license = licenses.mit;
};
}