summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc/privacyidea/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc/privacyidea/default.nix')
-rw-r--r--pkgs/applications/misc/privacyidea/default.nix12
1 files changed, 11 insertions, 1 deletions
diff --git a/pkgs/applications/misc/privacyidea/default.nix b/pkgs/applications/misc/privacyidea/default.nix
index d7613b0c2a54..405d992576da 100644
--- a/pkgs/applications/misc/privacyidea/default.nix
+++ b/pkgs/applications/misc/privacyidea/default.nix
@@ -1,5 +1,5 @@
{ lib, fetchFromGitHub, cacert, openssl, nixosTests
-, python39
+, python39, fetchpatch
}:
let
@@ -107,6 +107,16 @@ python3'.pkgs.buildPythonPackage rec {
pydash ecdsa google-auth importlib-metadata argon2-cffi bcrypt
];
+ patches = [
+ # Apply https://github.com/privacyidea/privacyidea/pull/3304, fixes
+ # `Exceeds the limit (4300) for integer string conversion` in the tests,
+ # see https://hydra.nixos.org/build/192932057
+ (fetchpatch {
+ url = "https://github.com/privacyidea/privacyidea/commit/0e28f36c0b3291a361669f4a3a77c294f4564475.patch";
+ sha256 = "sha256-QqcO8bkt+I2JKce/xk2ZhzEaLZ3E4uZ4x5W9Kk0pMQQ=";
+ })
+ ];
+
passthru.tests = { inherit (nixosTests) privacyidea; };
checkInputs = with python3'.pkgs; [ openssl mock pytestCheckHook responses testfixtures ];