mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
python312Packages.webob: 1.8.7 -> 1.8.8 (#339326)
This commit is contained in:
commit
804c831f05
@ -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/";
|
||||
|
Loading…
Reference in New Issue
Block a user