Merge pull request #293530 from MaxwellDupre/python-modules/wsgi-intercept113

python311Packages.wsgi-intercept: 1.12.1->1.13.0
This commit is contained in:
Jon Seager 2024-03-06 12:34:37 +00:00 committed by GitHub
commit 9f78242e1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,22 +7,27 @@
, pytestCheckHook
, pythonOlder
, requests
, setuptools
, urllib3
}:
buildPythonPackage rec {
pname = "wsgi-intercept";
version = "1.12.1";
format = "setuptools";
version = "1.13.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "wsgi_intercept";
inherit version;
hash = "sha256-StUxEN91fU7qoptH9iKJFpZWIBIOtIe6S4gvdBgN48E=";
hash = "sha256-daA+HQHdtCAC+1a4Ss0qeo7OJe/dIGREoTqfH7z6k0w=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
six
];
@ -36,6 +41,9 @@ buildPythonPackage rec {
];
disabledTests = [
# Tests require network access
"test_urllib3"
"test_requests"
"test_http_not_intercepted"
"test_https_not_intercepted"
"test_https_no_ssl_verification_not_intercepted"
@ -49,6 +57,6 @@ buildPythonPackage rec {
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; [ ];
maintainers = with maintainers; [ mikecm ];
};
}