python312Packages.apache-beam: 2.63.0 -> 2.65.0 (#408537)

authored by

Gaétan Lepage and committed by
GitHub
d461f620 e0f0b8be

+11 -4
+2 -4
pkgs/development/python-modules/apache-beam/default.nix
··· 17 yapf, 18 19 # dependencies 20 - cloudpickle, 21 crcmod, 22 dill, 23 fastavro, ··· 63 64 buildPythonPackage rec { 65 pname = "apache-beam"; 66 - version = "2.63.0"; 67 pyproject = true; 68 69 src = fetchFromGitHub { 70 owner = "apache"; 71 repo = "beam"; 72 tag = "v${version}"; 73 - hash = "sha256-ixJstawgU3UGtNKVzkwMCLkdY7QKTbxNe6JJ7vG+vmA="; 74 }; 75 76 pythonRelaxDeps = [ ··· 109 ]; 110 111 dependencies = [ 112 - cloudpickle 113 crcmod 114 dill 115 fastavro
··· 17 yapf, 18 19 # dependencies 20 crcmod, 21 dill, 22 fastavro, ··· 62 63 buildPythonPackage rec { 64 pname = "apache-beam"; 65 + version = "2.65.0"; 66 pyproject = true; 67 68 src = fetchFromGitHub { 69 owner = "apache"; 70 repo = "beam"; 71 tag = "v${version}"; 72 + hash = "sha256-vDW0PVNep+egIZBe4t8IPwLgsQDmoO4rrA4wUoAHzfg="; 73 }; 74 75 pythonRelaxDeps = [ ··· 108 ]; 109 110 dependencies = [ 111 crcmod 112 dill 113 fastavro
+9
pkgs/development/python-modules/tensorflow-datasets/default.nix
··· 26 apache-beam, 27 beautifulsoup4, 28 click, 29 datasets, 30 ffmpeg, 31 imagemagick, ··· 101 apache-beam 102 beautifulsoup4 103 click 104 datasets 105 ffmpeg 106 imagemagick ··· 134 # AttributeError: 'NoneType' object has no attribute 'Table' 135 "--deselect=tensorflow_datasets/core/file_adapters_test.py::test_read_write" 136 "--deselect=tensorflow_datasets/text/c4_wsrs/c4_wsrs_test.py::C4WSRSTest" 137 ]; 138 139 disabledTestPaths = [
··· 26 apache-beam, 27 beautifulsoup4, 28 click, 29 + cloudpickle, 30 datasets, 31 ffmpeg, 32 imagemagick, ··· 102 apache-beam 103 beautifulsoup4 104 click 105 + cloudpickle 106 datasets 107 ffmpeg 108 imagemagick ··· 136 # AttributeError: 'NoneType' object has no attribute 'Table' 137 "--deselect=tensorflow_datasets/core/file_adapters_test.py::test_read_write" 138 "--deselect=tensorflow_datasets/text/c4_wsrs/c4_wsrs_test.py::C4WSRSTest" 139 + ]; 140 + 141 + disabledTests = [ 142 + # Since updating apache-beam to 2.65.0 143 + # RuntimeError: Unable to pickle fn CallableWrapperDoFn...: maximum recursion depth exceeded 144 + # https://github.com/tensorflow/datasets/issues/11055 145 + "test_download_and_prepare_as_dataset" 146 ]; 147 148 disabledTestPaths = [