From 7ccddbdcd59d8223749a504715332506aef3d600 Mon Sep 17 00:00:00 2001 From: Jaanus Torp Date: Tue, 9 Jul 2024 11:12:00 +0300 Subject: [PATCH] pypass: disables tests on python 3.12 as nose does not support it --- pkgs/development/python-modules/pypass/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/pypass/default.nix b/pkgs/development/python-modules/pypass/default.nix index f5113813a1ae2b1..3a2fc269ceda478 100644 --- a/pkgs/development/python-modules/pypass/default.nix +++ b/pkgs/development/python-modules/pypass/default.nix @@ -12,6 +12,7 @@ pbr, pexpect, pythonAtLeast, + pythonOlder, substituteAll, tree, xclip, @@ -54,6 +55,8 @@ buildPythonPackage rec { pexpect ]; + doCheck = pythonOlder "3.12"; + nativeCheckInputs = [ nose ]; # Configuration so that the tests work