lol

Merge pull request #284963 from wegank/cmdstanpy-darwin

python311Packages.{cmdstanpy,prophet}: add darwin support

authored by

Weijia Wang and committed by
GitHub
230e5669 eda57313

+3 -2
+3 -1
pkgs/development/python-modules/cmdstanpy/default.nix
··· 11 11 , stanio 12 12 , xarray 13 13 , pytestCheckHook 14 + , stdenv 14 15 }: 15 16 16 17 buildPythonPackage rec { ··· 75 76 # These tests use the flag -DSTAN_THREADS which doesn't work in cmdstan (missing file) 76 77 "test_multi_proc_threads" 77 78 "test_compile_force" 79 + ] ++ lib.optionals stdenv.isDarwin [ 80 + "test_init_types" # CmdStan error: error during processing Operation not permitted 78 81 ]; 79 82 80 83 pythonImportsCheck = [ "cmdstanpy" ]; ··· 84 87 description = "A lightweight interface to Stan for Python users"; 85 88 changelog = "https://github.com/stan-dev/cmdstanpy/releases/tag/v${version}"; 86 89 license = lib.licenses.bsd3; 87 - platforms = lib.platforms.linux; 88 90 maintainers = with lib.maintainers; [ tomasajt ]; 89 91 }; 90 92 }
-1
pkgs/development/python-modules/prophet/default.nix
··· 66 66 homepage = "https://facebook.github.io/prophet/"; 67 67 license = lib.licenses.mit; 68 68 maintainers = with lib.maintainers; [ tomasajt ]; 69 - platforms = lib.platforms.linux; # cmdstanpy doesn't currently build on darwin 70 69 }; 71 70 }