python311Packages.quart: 0.18.4 -> 0.19.4

https://github.com/pallets/quart/blob/0.19.4/CHANGES.rst
This commit is contained in:
Martin Weinelt 2023-10-01 01:26:41 +02:00
parent a24d9a6a54
commit 138f345fda
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
# build-system
, poetry-core
@ -9,6 +10,7 @@
, aiofiles
, blinker
, click
, flask
, hypercorn
, importlib-metadata
, itsdangerous
@ -29,14 +31,14 @@
buildPythonPackage rec {
pname = "quart";
version = "0.18.4";
version = "0.19.4";
format = "pyproject";
src = fetchFromGitHub {
owner = "pallets";
repo = "quart";
rev = "refs/tags/${version}";
hash = "sha256-iT/pePUtH1hwNIOG8Y/YbqCVseNXVOKC0nrXfB2RTlQ=";
hash = "sha256-EgCZ0AXK2vGxo55BWAcDVv6zNUrWNbAYNnEXEBJk+84=";
};
nativeBuildInputs = [
@ -52,15 +54,17 @@ buildPythonPackage rec {
aiofiles
blinker
click
flask
hypercorn
importlib-metadata
itsdangerous
jinja2
markupsafe
pydata-sphinx-theme
python-dotenv
typing-extensions
werkzeug
] ++ lib.optionals (pythonOlder "3.10") [
importlib-metadata
typing-extensions
];
pythonImportsCheck = [
@ -75,11 +79,6 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTestPaths = [
# remove after 0.18.4
"tests/test_signals.py"
];
meta = with lib; {
description = "An async Python micro framework for building web applications";
homepage = "https://github.com/pallets/quart/";