My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/wsgiproxy2/default.nix

30 lines
579 B

{ lib
, buildPythonPackage
, fetchPypi
, six
, webob
}:
buildPythonPackage rec {
pname = "WSGIProxy2";
version = "0.4.2";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "13kf9bdxrc95y9vriaz0viry3ah11nz4rlrykcfvb8nlqpx3dcm4";
};
propagatedBuildInputs = [ six webob ];
# circular dep on webtest
doCheck = false;
meta = with lib; {
homepage = "http://pythonpaste.org/wsgiproxy/";
description = "HTTP proxying tools for WSGI apps";
license = licenses.mit;
maintainers = with maintainers; [ domenkozar ];
};
}