summary refs log tree commit diff
path: root/pkgs/development/python-modules/wsgi-intercept/default.nix
blob: b59b7aaa7d72e29e966baa605586ee2bb48d11b1 (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
28
29
30
31
{ lib, buildPythonPackage, fetchPypi, six, httplib2, py, pytestCheckHook, requests, urllib3 }:

buildPythonPackage rec {
  pname = "wsgi-intercept";
  version = "1.9.3";

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

  propagatedBuildInputs = [ six ];

  checkInputs = [ httplib2 py pytestCheckHook requests urllib3 ];

  disabledTests = [
    "test_http_not_intercepted"
    "test_https_not_intercepted"
    "test_https_no_ssl_verification_not_intercepted"
  ];

  pythonImportsCheck = [ "wsgi_intercept" ];

  meta = with lib; {
    description = "wsgi_intercept installs a WSGI application in place of a real URI for testing";
    homepage = "https://github.com/cdent/wsgi-intercept";
    license = licenses.mit;
    maintainers = with maintainers; [ SuperSandro2000 ];
  };
}