From 7e86f64dcb66a7312df2409427749a3b445ec69e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 9 Jun 2025 01:59:26 +0200 Subject: [PATCH] paperless-ngx: 2.16.2 -> 2.16.3 Changelog: https://github.com/paperless-ngx/paperless-ngx/releases/tag/v2.16.3 Also reduce max cores to reduce flakiness of tests... --- pkgs/by-name/pa/paperless-ngx/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/pa/paperless-ngx/package.nix b/pkgs/by-name/pa/paperless-ngx/package.nix index b5ac70c8501a..24a39d8106aa 100644 --- a/pkgs/by-name/pa/paperless-ngx/package.nix +++ b/pkgs/by-name/pa/paperless-ngx/package.nix @@ -26,13 +26,13 @@ xorg, }: let - version = "2.16.2"; + version = "2.16.3"; src = fetchFromGitHub { owner = "paperless-ngx"; repo = "paperless-ngx"; tag = "v${version}"; - hash = "sha256-w6VS3m661EvLGk1lVbTAYNzwVgXjvegn0KByGDBFjz0="; + hash = "sha256-mtzr/rRzcYcZl9tUkhxEKoFQWm1QTToOYZJXhynwDmk="; }; python = python3.override { @@ -69,7 +69,7 @@ let pnpmDeps = pnpm.fetchDeps { inherit pname version src; - hash = "sha256-tSBpZ+1aPLUI0SKpOyKo+OLsJZiyDCxRb+5hKMPrxL8="; + hash = "sha256-Z7c+AstVnxbPnEhc51qSqOYhRXqNJVwTvgHFcFp+pYg="; }; nativeBuildInputs = @@ -134,8 +134,8 @@ python.pkgs.buildPythonApplication rec { postPatch = '' # pytest-xdist with to many threads makes the tests flaky - if (( $NIX_BUILD_CORES > 4)); then - NIX_BUILD_CORES=4 + if (( $NIX_BUILD_CORES > 3)); then + NIX_BUILD_CORES=3 fi substituteInPlace pyproject.toml \ --replace-fail '"--numprocesses=auto",' "" \