clanService/paperless: drop psycopg test workaround

The test_stats_connect override was a stopgap for nixpkgs#494510, fixed
upstream in #494536. It forced a rebuild of the whole python package set
(psycopg -> pytest-postgresql -> sqlframe -> narwhals -> scikit-learn),
which broke on a flaky scikit-learn test.
This commit is contained in:
2026-09-07 09:37:14 +00:00
parent 258237e74f
commit 20868891e8
-12
View File
@@ -16,18 +16,6 @@
...
}:
{
nixpkgs.overlays = [
(final: prev: {
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
(pyFinal: pyPrev: {
psycopg = pyPrev.psycopg.overrideAttrs (old: {
disabledTests = old.disabledTests ++ [ "test_stats_connect" ];
});
})
];
})
];
services.paperless = {
enable = lib.mkDefault true;
};