pythonPackages.isort: disable two tests

+1 -1
+1 -1
pkgs/development/python-modules/isort/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, isPy27, futures, backports_functools_lru_cache, mock, pytest }: 2 2 3 3 let 4 - skipTests = lib.optional isPy27 "test_standard_library_deprecates_user_issue_778"; 4 + skipTests = [ "test_requirements_finder" "test_pipfile_finder" ] ++ lib.optional isPy27 "test_standard_library_deprecates_user_issue_778"; 5 5 testOpts = lib.concatMapStringsSep " " (t: "--deselect test_isort.py::${t}") skipTests; 6 6 in buildPythonPackage rec { 7 7 pname = "isort";