python312Packages.webob: 1.8.7 -> 1.8.8 (#339326)

This commit is contained in:
Sandro 2024-09-10 15:57:58 +02:00 committed by GitHub
commit 804c831f05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,25 +1,31 @@
{
lib,
buildPythonPackage,
fetchPypi,
fetchFromGitHub,
setuptools,
legacy-cgi,
pytestCheckHook,
pythonAtLeast,
pythonOlder,
# for passthru.tests
pyramid,
routes,
tokenlib,
}:
buildPythonPackage rec {
pname = "webob";
version = "1.8.7";
version = "1.8.8";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "WebOb";
inherit version;
hash = "sha256-tk71FBvlWc+t5EjwRPpFwiYDUe3Lao72t+AMfc7wwyM=";
src = fetchFromGitHub {
owner = "Pylons";
repo = "webob";
rev = "refs/tags/${version}";
hash = "sha256-QN0UMLzO0g8Oalnn5GlOulXUxtXOx89jeeEvJV53rVs=";
};
build-system = [ setuptools ];
@ -37,6 +43,10 @@ buildPythonPackage rec {
"tests/test_client_functional.py"
];
passthru.tests = {
inherit pyramid routes tokenlib;
};
meta = with lib; {
description = "WSGI request and response object";
homepage = "https://webob.org/";