lol

Merge pull request #267964 from GaetanLepage/awkward

python311Packages.awkward: 2.4.10 -> 2.5.0

authored by

Dmitry Kalinkin and committed by
GitHub
49a0e28b f88c003d

+49 -25
+2 -2
pkgs/development/python-modules/awkward-cpp/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "awkward-cpp"; 14 - version = "26"; 14 + version = "27"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.8"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-o3wI+JEmtjfUczRUob8/KLGNn3lH0h3GuhIDfYg7HGY="; 21 + hash = "sha256-PBllGL/M5wl2bWOHgEExekkUti+Ag+Gj4DtP1upvPI0="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/awkward/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "awkward"; 27 - version = "2.4.10"; 27 + version = "2.5.1"; 28 28 pyproject = true; 29 29 30 30 disabled = pythonOlder "3.8"; ··· 33 33 owner = "scikit-hep"; 34 34 repo = "awkward"; 35 35 rev = "refs/tags/v${version}"; 36 - hash = "sha256-D+bgKI6olK3smgnRdACvd0gYMWvS6ao6f7nQh3YExXw="; 36 + hash = "sha256-lfeoWTmK/VNm3uFLHmIPO4r9aZPK3NhgDwio5WN4jqU="; 37 37 }; 38 38 39 39 nativeBuildInputs = [
+3 -4
pkgs/development/python-modules/coffea/default.nix
··· 31 31 32 32 buildPythonPackage rec { 33 33 pname = "coffea"; 34 - version = "2023.10.0.rc1"; 34 + version = "2023.12.0"; 35 35 pyproject = true; 36 36 37 37 src = fetchFromGitHub { 38 38 owner = "CoffeaTeam"; 39 39 repo = "coffea"; 40 40 rev = "refs/tags/v${version}"; 41 - hash = "sha256-1mfTuZDfkD0NjcmSoXN3BLC5o+dWvw+r65ukZTZf8j4="; 41 + hash = "sha256-Xlud3ibdI4UnoHe72NPc7WQojuWPpXtncENDinYgk4o="; 42 42 }; 43 43 44 44 postPatch = '' 45 45 substituteInPlace pyproject.toml \ 46 - --replace "numba>=0.58.0" "numba" \ 47 - --replace "numpy>=1.22.0,<1.26" "numpy" 46 + --replace "numba>=0.58.1" "numba" 48 47 ''; 49 48 50 49 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/dask-awkward/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "dask-awkward"; 16 - version = "2023.11.2"; 16 + version = "2023.12.2"; 17 17 pyproject = true; 18 18 19 19 disabled = pythonOlder "3.8"; ··· 22 22 owner = "dask-contrib"; 23 23 repo = "dask-awkward"; 24 24 rev = "refs/tags/${version}"; 25 - hash = "sha256-yx0B31x+BMS4alHro+hAPeVB6YK9B7Tg+3sSCMCYjKs="; 25 + hash = "sha256-MfZ3mdCCShD/rcqHx7xyujXax5t96RQI1e2Ckyif9e4="; 26 26 }; 27 27 28 28 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+11 -2
pkgs/development/python-modules/dask-yarn/default.nix
··· 4 4 , dask 5 5 , distributed 6 6 , fetchFromGitHub 7 + , fetchpatch 7 8 , grpcio 8 9 , pytestCheckHook 9 10 , pythonOlder ··· 19 20 20 21 src = fetchFromGitHub { 21 22 owner = "dask"; 22 - repo = pname; 23 - rev = version; 23 + repo = "dask-yarn"; 24 + rev = "refs/tags/${version}"; 24 25 hash = "sha256-/BTsxQSiVQrihrCa9DE7pueyg3aPAdjd/Dt4dpUwdtM="; 25 26 }; 27 + 28 + patches = [ 29 + (fetchpatch { # https://github.com/dask/dask-yarn/pull/150 30 + name = "address-deprecations-introduced-in-distributed-2021-07-0"; 31 + url = "https://github.com/dask/dask-yarn/pull/150/commits/459848afcdc22568905ee98622c74e4071496423.patch"; 32 + hash = "sha256-LS46QBdiAmsp4jQq4DdYdmmk1qzx5JZNTQUlRcRwY5k="; 33 + }) 34 + ]; 26 35 27 36 propagatedBuildInputs = [ 28 37 distributed
+2 -2
pkgs/development/python-modules/dask/default.nix
··· 38 38 39 39 buildPythonPackage rec { 40 40 pname = "dask"; 41 - version = "2023.10.1"; 41 + version = "2023.12.0"; 42 42 pyproject = true; 43 43 44 44 disabled = pythonOlder "3.9"; ··· 47 47 owner = "dask"; 48 48 repo = "dask"; 49 49 rev = "refs/tags/${version}"; 50 - hash = "sha256-asD5oLd7XcZ8ZFSrsSCAKgZ3Gsqs6T77nb1qesamgUI="; 50 + hash = "sha256-LMd55s8LT4m6Ym+LmXb4TKPnZ0jMkNBfcPJxmgruMDM="; 51 51 }; 52 52 53 53 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/distributed/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "distributed"; 27 - version = "2023.10.0"; 27 + version = "2023.12.0"; 28 28 pyproject = true; 29 29 30 30 disabled = pythonOlder "3.9"; ··· 33 33 owner = "dask"; 34 34 repo = "distributed"; 35 35 rev = "refs/tags/${version}"; 36 - hash = "sha256-V0L1qY9xtJgKxNEZ69z8CQuXsUs30cqu6xFrsjKWkbY="; 36 + hash = "sha256-Zv31BTzY31eXkU7wqa+h33qGrH+OTzKEj6L7Ei/aizk="; 37 37 }; 38 38 39 39 postPatch = ''
+25 -9
pkgs/development/python-modules/uproot/default.nix
··· 5 5 , awkward 6 6 , hatchling 7 7 , numpy 8 + , fsspec 8 9 , packaging 9 10 , pytestCheckHook 10 11 , lz4 11 12 , pytest-timeout 13 + , rangehttpserver 12 14 , scikit-hep-testdata 13 15 , xxhash 14 16 , zstandard ··· 16 18 17 19 buildPythonPackage rec { 18 20 pname = "uproot"; 19 - version = "5.1.2"; 21 + version = "5.2.0"; 20 22 pyproject = true; 21 23 22 24 disabled = pythonOlder "3.8"; ··· 25 27 owner = "scikit-hep"; 26 28 repo = "uproot5"; 27 29 rev = "refs/tags/v${version}"; 28 - hash = "sha256-TMa+j2jdFagJJhlyCx4rNLaxQhrJyq1HdpnA40xiyME="; 30 + hash = "sha256-Oig66OvnmuqT56UkAecSG9qg+qxEQINX/DWS30yq46s="; 29 31 }; 30 32 31 33 nativeBuildInputs = [ ··· 35 37 propagatedBuildInputs = [ 36 38 awkward 37 39 numpy 40 + fsspec 38 41 packaging 39 42 ]; 40 43 ··· 42 45 pytestCheckHook 43 46 lz4 44 47 pytest-timeout 48 + rangehttpserver 45 49 scikit-hep-testdata 46 50 xxhash 47 51 zstandard ··· 53 57 54 58 disabledTests = [ 55 59 # Tests that try to download files 60 + "test_fallback" 61 + "test_file" 62 + "test_fsspec_chunks" 63 + "test_fsspec_globbing_http" 64 + "test_fsspec_writing_memory" 56 65 "test_http" 66 + "test_http_fallback" 67 + "test_http_multipart" 68 + "test_http_port" 69 + "test_http_size" 70 + "test_http_size_port" 71 + "test_issue_1054_filename_colons" 57 72 "test_no_multipart" 58 - "test_fallback" 73 + "test_open_fsspec_http" 74 + "test_open_fsspec_github" 59 75 "test_pickle_roundtrip_http" 60 - "test_open_fsspec_local" 61 76 ]; 62 77 63 78 disabledTestPaths = [ 64 79 # Tests that try to download files 65 - "tests/test_0066-fix-http-fallback-freeze.py" 66 - "tests/test_0088-read-with-http.py" 67 - "tests/test_0220-contiguous-byte-ranges-in-http.py" 68 - "tests/test_0916-read-from-s3.py" 69 - "tests/test_0930-expressions-in-pandas.py" 80 + "tests/test_0066_fix_http_fallback_freeze.py" 81 + "tests/test_0088_read_with_http.py" 82 + "tests/test_0220_contiguous_byte_ranges_in_http.py" 83 + 84 + # FileNotFoundError: uproot-issue-1043.root 85 + "tests/test_1043_const_std_string.py" 70 86 ]; 71 87 72 88 pythonImportsCheck = [