python312Packages.pyiceberg: 0.8.1 -> 0.9.0 (#387827)

authored by Gaétan Lepage and committed by GitHub 35ce9705 dbcbf49d

+11 -2
+11 -2
pkgs/development/python-modules/pyiceberg/default.nix
··· 42 # tests 43 azure-core, 44 azure-storage-blob, 45 fastavro, 46 moto, 47 pyspark, ··· 54 55 buildPythonPackage rec { 56 pname = "iceberg-python"; 57 - version = "0.8.1"; 58 pyproject = true; 59 60 src = fetchFromGitHub { 61 owner = "apache"; 62 repo = "iceberg-python"; 63 tag = "pyiceberg-${version}"; 64 - hash = "sha256-L3YlOtzJv9R4TLeJGzfMQ+0nYtQEsqmgNZpW9B6vVAI="; 65 }; 66 67 patches = [ ··· 161 azure-core 162 azure-storage-blob 163 boto3 164 fastavro 165 moto 166 mypy-boto3-glue ··· 187 188 disabledTests = 189 [ 190 # botocore.exceptions.EndpointConnectionError: Could not connect to the endpoint URL 191 "test_checking_if_a_file_exists" 192 "test_closing_a_file" ··· 209 "test_fsspec_new_abfss_output_file_adls" 210 "test_fsspec_new_input_file_adls" 211 "test_fsspec_pickle_round_trip_aldfs" 212 213 # TypeError: pyarrow.lib.large_list() takes no keyword argument 214 # From tests/io/test_pyarrow_stats.py:
··· 42 # tests 43 azure-core, 44 azure-storage-blob, 45 + datafusion, 46 fastavro, 47 moto, 48 pyspark, ··· 55 56 buildPythonPackage rec { 57 pname = "iceberg-python"; 58 + version = "0.9.0"; 59 pyproject = true; 60 61 src = fetchFromGitHub { 62 owner = "apache"; 63 repo = "iceberg-python"; 64 tag = "pyiceberg-${version}"; 65 + hash = "sha256-PLxYe6MpKR6qILTNt0arujyx/nlVorwjhwokbXvdwb0="; 66 }; 67 68 patches = [ ··· 162 azure-core 163 azure-storage-blob 164 boto3 165 + datafusion 166 fastavro 167 moto 168 mypy-boto3-glue ··· 189 190 disabledTests = 191 [ 192 + # Require unpackaged pyiceberg_core 193 + "test_bucket_pyarrow_transforms" 194 + "test_transform_consistency_with_pyarrow_transform" 195 + "test_truncate_pyarrow_transforms" 196 + 197 # botocore.exceptions.EndpointConnectionError: Could not connect to the endpoint URL 198 "test_checking_if_a_file_exists" 199 "test_closing_a_file" ··· 216 "test_fsspec_new_abfss_output_file_adls" 217 "test_fsspec_new_input_file_adls" 218 "test_fsspec_pickle_round_trip_aldfs" 219 + "test_partitioned_write" 220 + "test_token_200_w_oauth2_server_uri" 221 222 # TypeError: pyarrow.lib.large_list() takes no keyword argument 223 # From tests/io/test_pyarrow_stats.py: