a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
54 lines
994 B
Nix
54 lines
994 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, six
|
|
, httplib2
|
|
, py
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, requests
|
|
, urllib3
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "wsgi-intercept";
|
|
version = "1.11.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
pname = "wsgi_intercept";
|
|
inherit version;
|
|
hash = "sha256-KvrZs+EgeK7Du7ni6icKHfcF0W0RDde0W6Aj/EPZ2Hw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
six
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
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 = "Module that acts as 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 ];
|
|
};
|
|
}
|