From 364ddc4e940b38652ba3a3b0d579dae1e513cd71 Mon Sep 17 00:00:00 2001 From: Emily Date: Sat, 10 Aug 2024 01:07:55 +0100 Subject: [PATCH] python3{11,12}Packages.nose2pytest: disable tests --- .../python-modules/nose2pytest/default.nix | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/nose2pytest/default.nix b/pkgs/development/python-modules/nose2pytest/default.nix index b7a765f696f3..72f554e8a501 100644 --- a/pkgs/development/python-modules/nose2pytest/default.nix +++ b/pkgs/development/python-modules/nose2pytest/default.nix @@ -6,8 +6,6 @@ setuptools, fissix, pytest, - pytestCheckHook, - nose, }: let @@ -43,14 +41,8 @@ buildPythonPackage { pytest ]; - nativeCheckInputs = [ - pytestCheckHook - nose - ]; - - preCheck = '' - export HOME=$(mktemp -d) - ''; + # Tests depend on nose! + doCheck = false; pythonImportsCheck = [ "nose2pytest.assert_tools" ];