Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #124527 from risicle/ris-python-xgboost-darwin-fix-r21.05

authored by Sandro and committed by GitHub 83fb69d6 51cf3940

+7 -1
+7 -1
pkgs/development/python-modules/xgboost/default.nix
··· 1 - { buildPythonPackage 1 + { lib 2 + , buildPythonPackage 2 3 , pytestCheckHook 3 4 , cmake 4 5 , scipy ··· 56 57 disabledTests = [ 57 58 "test_cli_binary_classification" 58 59 "test_model_compatibility" 60 + ] ++ lib.optionals stdenv.isDarwin [ 61 + # fails to connect to the com.apple.fonts daemon in sandboxed mode 62 + "test_plotting" 63 + "test_sklearn_plotting" 59 64 ]; 60 65 66 + __darwinAllowLocalNetworking = true; 61 67 }