mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-21 08:01:31 +00:00
python3Packages.pyiceberg: allow rich 15 (#542007)
This commit is contained in:
@@ -22,6 +22,7 @@ python3Packages.buildPythonApplication (finalAttrs: {
|
||||
pythonRelaxDeps = [
|
||||
"argcomplete"
|
||||
"cryptography"
|
||||
"pydantic"
|
||||
"requests"
|
||||
"rich"
|
||||
"supabase"
|
||||
|
||||
@@ -79,6 +79,11 @@ buildPythonPackage (finalAttrs: {
|
||||
# Prevents the cython build to fail silently
|
||||
env.CIBUILDWHEEL = "1";
|
||||
|
||||
pythonRelaxDeps = [
|
||||
# rich<15.0.0,>=10.11.0 not satisfied by version 15.0.0
|
||||
"rich"
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
cachetools
|
||||
click
|
||||
@@ -289,6 +294,10 @@ buildPythonPackage (finalAttrs: {
|
||||
# Timing sensitive
|
||||
# AssertionError: assert 8 == 5
|
||||
"test_hive_wait_for_lock"
|
||||
|
||||
# Schema comparison faildue to `string` becoming `large_string`
|
||||
"test_read_map "
|
||||
"test_projection_maps_of_structs"
|
||||
]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
# ImportError: The pyarrow installation is not built with support for 'GcsFileSystem'
|
||||
|
||||
Reference in New Issue
Block a user