lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.jupysql: 0.10.17 -> 0.11.1 (#400520)

authored by

Gaétan Lepage and committed by
GitHub
84777c46 6c18fdbb

+7 -8
+7 -8
pkgs/development/python-modules/jupysql/default.nix
··· 33 33 # tests 34 34 pytestCheckHook, 35 35 psutil, 36 + writableTmpDirAsHomeHook, 36 37 }: 37 38 38 39 buildPythonPackage rec { 39 40 pname = "jupysql"; 40 - version = "0.10.17"; 41 + version = "0.11.1"; 41 42 42 43 pyproject = true; 43 44 ··· 45 46 owner = "ploomber"; 46 47 repo = "jupysql"; 47 48 tag = version; 48 - hash = "sha256-0lrcNKDKmM3Peodc9ZzgqkzwPHPLMxxXHAj4OOKWZxA="; 49 + hash = "sha256-7wfKvKqDf8LlUiLoevNRxmq8x5wLheOgIeWz72oFcuw="; 49 50 }; 50 51 51 52 pythonRelaxDeps = [ "sqlalchemy" ]; ··· 80 81 nativeCheckInputs = [ 81 82 pytestCheckHook 82 83 psutil 84 + writableTmpDirAsHomeHook 83 85 ] ++ optional-dependencies.dev; 84 86 85 87 disabledTests = 86 88 [ 87 89 # AttributeError: 'DataFrame' object has no attribute 'frame_equal' 88 90 "test_resultset_polars_dataframe" 91 + 89 92 # all of these are broken with later versions of duckdb; see 90 93 # https://github.com/ploomber/jupysql/issues/1030 91 94 "test_resultset_getitem" ··· 99 102 "test_resultset_repr_html_with_reduced_feedback" 100 103 "test_invalid_operation_error" 101 104 "test_resultset_config_autolimit_dict" 105 + 102 106 # fails due to strict warnings 103 107 "test_calling_legacy_plotting_functions_displays_warning" 104 108 ] 105 109 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 106 - # Fatal Python error: Aborted (in matplotlib) 110 + # RuntimeError: *** -[__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil object from objects[1] 107 111 "test_no_errors_with_stored_query" 108 112 ]; 109 113 ··· 121 125 # require js2py (which is unmaintained and insecure) 122 126 "src/tests/test_widget.py" 123 127 ]; 124 - 125 - preCheck = '' 126 - # tests need to write temp data 127 - export HOME=$(mktemp -d) 128 - ''; 129 128 130 129 pythonImportsCheck = [ "sql" ]; 131 130