From 7cf40592d7ec2b3523e1d39a26f970c9220e9179 Mon Sep 17 00:00:00 2001 From: osbm Date: Fri, 7 Nov 2025 08:47:39 +0300 Subject: [PATCH] lets see if this is causing mass rebuilds --- .../nixos/services/wanikani-stats/default.nix | 38 +++++++++---------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/modules/nixos/services/wanikani-stats/default.nix b/modules/nixos/services/wanikani-stats/default.nix index f0a8510..0731dda 100644 --- a/modules/nixos/services/wanikani-stats/default.nix +++ b/modules/nixos/services/wanikani-stats/default.nix @@ -6,25 +6,25 @@ }: let python = - let - packageOverrides = self: super: { - imageio = super.imageio.overridePythonAttrs (old: { - disabledTests = [ - "test_read_stream" - "test_uri_reading" - "test_trim_filter" - "test_process_termination" - ]; - }); - plotly = super.plotly.overridePythonAttrs (old: { - disabledTestPaths = (old.disabledTestPaths or [ ]) ++ [ - "tests/test_optional/test_kaleido/test_kaleido.py" - ]; - }); - }; - in - pkgs.python313.override { - inherit packageOverrides; + # let + # packageOverrides = self: super: { + # imageio = super.imageio.overridePythonAttrs (old: { + # disabledTests = [ + # "test_read_stream" + # "test_uri_reading" + # "test_trim_filter" + # "test_process_termination" + # ]; + # }); + # plotly = super.plotly.overridePythonAttrs (old: { + # disabledTestPaths = (old.disabledTestPaths or [ ]) ++ [ + # "tests/test_optional/test_kaleido/test_kaleido.py" + # ]; + # }); + # }; + # in + pkgs.python3.override { + # inherit packageOverrides; self = python; }; wanikani-stats-flask = pkgs.writeShellApplication {