1 { lib, buildPythonPackage, fetchPypi, six, httplib2, py, pytestCheckHook, requests, urllib3 }:
3 buildPythonPackage rec {
4 pname = "wsgi-intercept";
8 pname = "wsgi_intercept";
10 sha256 = "sha256-BX8EWtR8pXkibcliJbfBw6/5VdHs9HczjM1c1SWx3wk=";
13 propagatedBuildInputs = [ six ];
15 checkInputs = [ httplib2 py pytestCheckHook requests urllib3 ];
18 "test_http_not_intercepted"
19 "test_https_not_intercepted"
20 "test_https_no_ssl_verification_not_intercepted"
23 pythonImportsCheck = [ "wsgi_intercept" ];
26 description = "wsgi_intercept installs a WSGI application in place of a real URI for testing";
27 homepage = "https://github.com/cdent/wsgi-intercept";
28 license = licenses.mit;
29 maintainers = with maintainers; [ SuperSandro2000 ];