Merge pull request #335242 from fabaff/wsgi-intercept-bump

python312Packages.wsgi-intercept: 1.13.0 -> 1.13.1
This commit is contained in:
Fabian Affolter
2024-08-17 09:17:39 +02:00
committed by GitHub
@@ -14,7 +14,7 @@
buildPythonPackage rec {
pname = "wsgi-intercept";
version = "1.13.0";
version = "1.13.1";
pyproject = true;
disabled = pythonOlder "3.7";
@@ -22,12 +22,12 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "wsgi_intercept";
inherit version;
hash = "sha256-daA+HQHdtCAC+1a4Ss0qeo7OJe/dIGREoTqfH7z6k0w=";
hash = "sha256-eb1sY5qxH36r5dGK2aIPYu6CocQ1EkqHbP/YA49sJME=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
propagatedBuildInputs = [ six ];
dependencies = [ six ];
nativeCheckInputs = [
httplib2
@@ -51,6 +51,7 @@ buildPythonPackage rec {
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";
changelog = "https://github.com/cdent/wsgi-intercept/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ mikecm ];
};