Merge pull request #307316 from GaetanLepage/uproot

python311Packages.uproot: 5.3.2 -> 5.3.6, python311Packages.coffea: 2024.4.1 -> 2024.5.0

authored by Pol Dellaiera and committed by GitHub 3f1b4523 030938f1

+20 -13
+14 -9
pkgs/development/python-modules/coffea/default.nix
··· 4 4 , fetchFromGitHub 5 5 , hatchling 6 6 , hatch-vcs 7 + , aiohttp 7 8 , awkward 8 9 , cachetools 9 10 , cloudpickle ··· 21 22 , packaging 22 23 , pandas 23 24 , pyarrow 25 + , requests 24 26 , scipy 25 27 , toml 26 28 , tqdm ··· 32 34 33 35 buildPythonPackage rec { 34 36 pname = "coffea"; 35 - version = "2024.4.1"; 37 + version = "2024.5.0"; 36 38 pyproject = true; 37 39 38 40 disabled = pythonOlder "3.8"; ··· 41 43 owner = "CoffeaTeam"; 42 44 repo = "coffea"; 43 45 rev = "refs/tags/v${version}"; 44 - hash = "sha256-Iu1GHnLUqdhYO7hoHaf+O/S6KO0P+dvl0wgfRA5vtGI="; 46 + hash = "sha256-FHE7/VL0mnf0eBPzCsrr8ISr7OmfFvI9xuV0CPa7JdU="; 45 47 }; 46 48 47 - postPatch = '' 48 - substituteInPlace pyproject.toml \ 49 - --replace-fail "numba>=0.58.1" "numba" 50 - ''; 51 - 52 - nativeBuildInputs = [ 49 + build-system = [ 53 50 hatchling 54 51 hatch-vcs 55 52 ]; 56 53 57 - propagatedBuildInputs = [ 54 + dependencies = [ 55 + aiohttp 58 56 awkward 59 57 cachetools 60 58 cloudpickle ··· 72 70 packaging 73 71 pandas 74 72 pyarrow 73 + requests 75 74 scipy 76 75 toml 77 76 tqdm ··· 86 85 87 86 pythonImportsCheck = [ 88 87 "coffea" 88 + ]; 89 + 90 + disabledTests = [ 91 + # Requires internet access 92 + # https://github.com/CoffeaTeam/coffea/issues/1094 93 + "test_lumimask" 89 94 ]; 90 95 91 96 __darwinAllowLocalNetworking = true;
+6 -4
pkgs/development/python-modules/uproot/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "uproot"; 22 - version = "5.3.2"; 22 + version = "5.3.7"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.8"; ··· 28 28 owner = "scikit-hep"; 29 29 repo = "uproot5"; 30 30 rev = "refs/tags/v${version}"; 31 - hash = "sha256-dq362pevqgLx5KwZ19zQ6aOn5NCyiqynPCF7YdI6tkw="; 31 + hash = "sha256-ptfT31eUNSpVaZfXAyRcIc2T2p82rXmzUyySSVbI9lI="; 32 32 }; 33 33 34 - nativeBuildInputs = [ 34 + build-system = [ 35 35 hatch-vcs 36 36 hatchling 37 37 ]; 38 38 39 - propagatedBuildInputs = [ 39 + dependencies = [ 40 40 awkward 41 41 cramjam 42 42 numpy ··· 76 76 "test_http_size" 77 77 "test_http_size_port" 78 78 "test_issue_1054_filename_colons" 79 + "test_multiple_page_lists" 79 80 "test_no_multipart" 80 81 "test_open_fsspec_github" 81 82 "test_open_fsspec_http" ··· 83 84 "test_pickle_roundtrip_http" 84 85 "test_split_ranges_if_large_file_in_http" 85 86 # Cyclic dependency with dask-awkward 87 + "test_dask_duplicated_keys" 86 88 "test_decompression_executor_for_dask" 87 89 ]; 88 90