···116 xgboost
117 ];
118000119 disabledTestPaths = [
120 # The resulting plots look sane, but does not match pixel-perfectly with the baseline.
121 # Likely due to a matplotlib version mismatch, different backend, or due to missing fonts.
···133134 pythonImportsCheck = [
135 "shap"
136- "shap.explainers"
137- "shap.explainers.other"
138- "shap.plots"
139- "shap.plots.colors"
140- "shap.benchmark"
141- "shap.maskers"
142- "shap.utils"
143- "shap.actions"
144- "shap.models"
145 ];
146147 meta = with lib; {
···116 xgboost
117 ];
118119+ # Test startup hangs with 0.43.0 and Hydra ends with a timeout
120+ doCheck = false;
121+122 disabledTestPaths = [
123 # The resulting plots look sane, but does not match pixel-perfectly with the baseline.
124 # Likely due to a matplotlib version mismatch, different backend, or due to missing fonts.
···136137 pythonImportsCheck = [
138 "shap"
000000000139 ];
140141 meta = with lib; {
···1-{ lib, stdenv, fetchurl, libxslt, docbook_xsl, makeWrapper }:
23stdenv.mkDerivation rec {
4 pname = "xdg-user-dirs";
···9 sha256 = "sha256-7G8G10lc26N6cyA5+bXhV4vLKWV2/eDaQO2y9SIg3zw=";
10 };
1112- nativeBuildInputs = [ makeWrapper libxslt docbook_xsl ];
001314 preFixup = ''
15 # fallback values need to be last
···22 description = "A tool to help manage well known user directories like the desktop folder and the music folder";
23 license = licenses.gpl2;
24 maintainers = with maintainers; [ ];
25- platforms = platforms.linux;
26 };
27}
···1+{ lib, stdenv, fetchurl, libxslt, docbook_xsl, gettext, libiconv, makeWrapper }:
23stdenv.mkDerivation rec {
4 pname = "xdg-user-dirs";
···9 sha256 = "sha256-7G8G10lc26N6cyA5+bXhV4vLKWV2/eDaQO2y9SIg3zw=";
10 };
1112+ buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
13+14+ nativeBuildInputs = [ makeWrapper libxslt docbook_xsl ] ++ lib.optionals stdenv.isDarwin [ gettext ];
1516 preFixup = ''
17 # fallback values need to be last
···24 description = "A tool to help manage well known user directories like the desktop folder and the music folder";
25 license = licenses.gpl2;
26 maintainers = with maintainers; [ ];
27+ platforms = platforms.unix;
28 };
29}