lol

python312Packages.coffea: 2025.1.1 -> 2025.3.0 (#390874)

authored by

Gaétan Lepage and committed by
GitHub
8166fb73 96fd0468

+12 -37
+12 -37
pkgs/development/python-modules/coffea/default.nix
··· 1 1 { 2 2 lib, 3 - stdenv, 4 3 buildPythonPackage, 5 4 fetchFromGitHub, 6 5 ··· 34 33 uproot, 35 34 vector, 36 35 37 - # checks 36 + # tests 38 37 distributed, 39 38 pyinstrument, 40 39 pytest-xdist, ··· 43 42 44 43 buildPythonPackage rec { 45 44 pname = "coffea"; 46 - version = "2025.1.1"; 45 + version = "2025.3.0"; 47 46 pyproject = true; 48 47 49 48 src = fetchFromGitHub { 50 49 owner = "CoffeaTeam"; 51 50 repo = "coffea"; 52 51 tag = "v${version}"; 53 - hash = "sha256-AGYi1w4e8XJOWRbuPX5eB/rTY5dCPji49zD0VQ4FvAs="; 52 + hash = "sha256-NZ3r/Dyw5bB4qOO29DUAARPzdJJxgR9OO9LxVu3YbNo="; 54 53 }; 55 54 56 55 build-system = [ ··· 98 97 99 98 pythonImportsCheck = [ "coffea" ]; 100 99 101 - disabledTests = 102 - [ 103 - # Requires internet access 104 - # https://github.com/CoffeaTeam/coffea/issues/1094 105 - "test_lumimask" 100 + disabledTests = [ 101 + # Requires internet access 102 + # https://github.com/CoffeaTeam/coffea/issues/1094 103 + "test_lumimask" 106 104 107 - # Flaky: FileNotFoundError: [Errno 2] No such file or directory 108 - # https://github.com/scikit-hep/coffea/issues/1246 109 - "test_packed_selection_cutflow_dak" # cutflow.npz 110 - "test_packed_selection_nminusone_dak" # nminusone.npz 111 - 112 - # AssertionError: bug in Awkward Array: attempt to convert TypeTracerArray into a concrete array 113 - "test_apply_to_fileset" 114 - "test_lorentz_behavior" 115 - 116 - # ValueError: The array to mask was deleted before it could be masked. 117 - # If you want to construct this mask, you must either keep the array alive or use 'ak.mask' explicitly. 118 - "test_read_nanomc" 119 - ] 120 - ++ lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [ 121 - # Fatal Python error: Segmentation fault 122 - # coffea/nanoevents/transforms.py", line 287 in index_range 123 - "test_KaonParent_to_PionDaughters_Loop" 124 - "test_MCRecoAssociations" 125 - "test_MC_daughters" 126 - "test_MC_parents" 127 - "test_field_is_present" 128 - 129 - # Fatal Python error: Segmentation fault 130 - # File "/build/source/tests/test_lumi_tools.py", line 37 in test_lumidata 131 - "test_lumidata" 132 - # coffea/lumi_tools/lumi_tools.py", line 113 in get_lumi 133 - "test_lumilist" 134 - ]; 105 + # Flaky: FileNotFoundError: [Errno 2] No such file or directory 106 + # https://github.com/scikit-hep/coffea/issues/1246 107 + "test_packed_selection_cutflow_dak" # cutflow.npz 108 + "test_packed_selection_nminusone_dak" # nminusone.npz 109 + ]; 135 110 136 111 __darwinAllowLocalNetworking = true; 137 112