From 688fed812dd2295789c970d6639b7aca29ca03d5 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 6 Apr 2024 01:57:33 +0200 Subject: python312Packages.quart: 0.19.4 -> 0.19.5 https://github.com/pallets/quart/blob/refs/tags/0.19.5/CHANGES.rst --- pkgs/development/python-modules/quart/default.nix | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/quart/default.nix b/pkgs/development/python-modules/quart/default.nix index 5a79054e89519..d0da424c9f672 100644 --- a/pkgs/development/python-modules/quart/default.nix +++ b/pkgs/development/python-modules/quart/default.nix @@ -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"; -- cgit 1.4.1