From 61006deb85f57d8754a68b4e5bbe1d6f745d2a36 Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Sat, 5 Aug 2023 12:43:29 -0700 Subject: [PATCH] flexget: add missing pyrsistent dependency --- pkgs/applications/networking/flexget/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/flexget/default.nix b/pkgs/applications/networking/flexget/default.nix index 05f936d46f06..dabb9743794f 100644 --- a/pkgs/applications/networking/flexget/default.nix +++ b/pkgs/applications/networking/flexget/default.nix @@ -22,8 +22,10 @@ python3.pkgs.buildPythonApplication rec { sed 's/[~<>=][^;]*//' -i requirements.txt ''; - # ~400 failures - doCheck = false; + nativeBuildInputs = with python3.pkgs; [ + setuptools + wheel + ]; propagatedBuildInputs = with python3.pkgs; [ # See https://github.com/Flexget/Flexget/blob/master/requirements.txt @@ -42,6 +44,7 @@ python3.pkgs.buildPythonApplication rec { packaging psutil pynzb + pyrsistent pyrss2gen python-dateutil pyyaml @@ -73,6 +76,9 @@ python3.pkgs.buildPythonApplication rec { "flexget.plugins.clients.transmission" ]; + # ~400 failures + doCheck = false; + meta = with lib; { homepage = "https://flexget.com/"; changelog = "https://github.com/Flexget/Flexget/releases/tag/v${version}";