python312Packages.altair: 5.4.1 -> 5.5.0, disable flaky tests (#371464)

authored by Arne Keller and committed by GitHub 2c62218a 5861228f

+8 -3
+8 -3
pkgs/development/python-modules/altair/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "altair"; 25 - version = "5.4.1"; 25 + version = "5.5.0"; 26 26 pyproject = true; 27 27 28 - disabled = pythonOlder "3.8"; 28 + disabled = pythonOlder "3.9"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "altair-viz"; 32 32 repo = "altair"; 33 33 tag = "v${version}"; 34 - hash = "sha256-7C51ACaBuNtOSXqLpuCI5bnLyE9U64vNXlD4/msPq2k="; 34 + hash = "sha256-lrKC4FYRQEax5E0lQNhO9FLk5UOJ0TnYzqZjndlRpGI="; 35 35 }; 36 36 37 37 build-system = [ hatchling ]; ··· 60 60 disabledTests = [ 61 61 # ValueError: Saving charts in 'svg' format requires the vl-convert-python or altair_saver package: see http://github.com/altair-viz/altair_saver/ 62 62 "test_renderer_with_none_embed_options" 63 + # Sometimes conflict due to parallelism 64 + "test_dataframe_to_csv[polars]" 65 + "test_dataframe_to_csv[pandas]" 66 + # Network access 67 + "test_theme_remote_lambda" 63 68 ]; 64 69 65 70 disabledTestPaths = [