From 6e196f1c526c32cf8ef0eda60c54298200e3915e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 25 Feb 2023 09:38:23 +0000 Subject: [PATCH 1/2] flexget: 3.5.25 -> 3.5.27 --- pkgs/applications/networking/flexget/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/flexget/default.nix b/pkgs/applications/networking/flexget/default.nix index 74d51ce43041..fbb73dbd968b 100644 --- a/pkgs/applications/networking/flexget/default.nix +++ b/pkgs/applications/networking/flexget/default.nix @@ -5,7 +5,7 @@ python3Packages.buildPythonApplication rec { pname = "flexget"; - version = "3.5.25"; + version = "3.5.27"; format = "pyproject"; # Fetch from GitHub in order to use `requirements.in` @@ -13,7 +13,7 @@ python3Packages.buildPythonApplication rec { owner = "flexget"; repo = "flexget"; rev = "refs/tags/v${version}"; - hash = "sha256-Xb33/wz85RjBpRkKD09hfDr6txoB1ksKphbjrVt0QWg="; + hash = "sha256-EeQs7WcNpnz2KrgUel9OF9pwW7WzKJrv5pvsZkV4RVg="; }; postPatch = '' From 3954f4ea130357140175d300b06798b4b24dfb72 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 25 Feb 2023 09:39:00 +0000 Subject: [PATCH 2/2] python310Packages.pytest-flask: disable flaky test on darwin --- pkgs/development/python-modules/pytest-flask/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/pytest-flask/default.nix b/pkgs/development/python-modules/pytest-flask/default.nix index 4db1967dc609..f972070f53f2 100644 --- a/pkgs/development/python-modules/pytest-flask/default.nix +++ b/pkgs/development/python-modules/pytest-flask/default.nix @@ -1,4 +1,5 @@ { lib +, stdenv , buildPythonPackage , fetchPypi , flask @@ -42,6 +43,10 @@ buildPythonPackage rec { "pytest_flask" ]; + pytestFlagsArray = lib.optionals stdenv.isDarwin [ + "--ignore=tests/test_live_server.py" + ]; + meta = with lib; { description = "A set of pytest fixtures to test Flask applications"; homepage = "https://pytest-flask.readthedocs.io/";