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