From ee4a1a8b3f5d234a6fe9c951d575c38526b5a1ba Mon Sep 17 00:00:00 2001 From: Jonas Chevalier Date: Mon, 8 May 2023 18:43:27 +0200 Subject: [PATCH] flit: disable tests for PEP 668 (#230706) The install tests call `pip` directly, and that doesn't work with PEP 668 anymore. See #229166 --- pkgs/development/python-modules/flit/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/flit/default.nix b/pkgs/development/python-modules/flit/default.nix index b28f4f6d5a61..58e10e22a47c 100644 --- a/pkgs/development/python-modules/flit/default.nix +++ b/pkgs/development/python-modules/flit/default.nix @@ -43,6 +43,11 @@ buildPythonPackage rec { disabledTests = [ # needs some ini file. "test_invalid_classifier" + # calls pip directly. disabled for PEP 668 + "test_install_data_dir" + "test_install_module_pep621" + "test_symlink_data_dir" + "test_symlink_module_pep621" ]; meta = with lib; {