Merge pull request #301952 from mweinelt/quart-0.19.5

python312Packages.quart: 0.19.4 -> 0.19.5
This commit is contained in:
Martin Weinelt 2024-04-06 16:07:40 +02:00 committed by GitHub
commit 567665b6ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 10 deletions

View File

@ -31,17 +31,17 @@
buildPythonPackage rec {
pname = "quart";
version = "0.19.4";
format = "pyproject";
version = "0.19.5";
pyproject = true;
src = fetchFromGitHub {
owner = "pallets";
repo = "quart";
rev = "refs/tags/${version}";
hash = "sha256-EgCZ0AXK2vGxo55BWAcDVv6zNUrWNbAYNnEXEBJk+84=";
hash = "sha256-T2+76AVvXrads7AbjNAExV0i4doQ2xIUEwekVB2JXAo=";
};
nativeBuildInputs = [
build-system = [
poetry-core
];
@ -50,7 +50,7 @@ buildPythonPackage rec {
--replace "--no-cov-on-fail " ""
'';
propagatedBuildInputs = [
dependencies = [
aiofiles
blinker
click
@ -79,11 +79,6 @@ buildPythonPackage rec {
pytestCheckHook
];
pytestFlagsArray = [
# pytest.PytestRemovedIn8Warning: Passing None has been deprecated.
"-W" "ignore::pytest.PytestRemovedIn8Warning"
];
meta = with lib; {
description = "An async Python micro framework for building web applications";
mainProgram = "quart";