587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
62 lines
1.1 KiB
Nix
62 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, six
|
|
, httplib2
|
|
, py
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, requests
|
|
, setuptools
|
|
, urllib3
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "wsgi-intercept";
|
|
version = "1.13.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
pname = "wsgi_intercept";
|
|
inherit version;
|
|
hash = "sha256-daA+HQHdtCAC+1a4Ss0qeo7OJe/dIGREoTqfH7z6k0w=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
six
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
httplib2
|
|
py
|
|
pytestCheckHook
|
|
requests
|
|
urllib3
|
|
];
|
|
|
|
disabledTests = [
|
|
# Tests require network access
|
|
"test_urllib3"
|
|
"test_requests"
|
|
"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; [ mikecm ];
|
|
};
|
|
}
|