nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
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 ··· 46 45 owner = "ploomber"; 47 46 repo = "jupysql"; 48 47 tag = version; 49 - hash = "sha256-0lrcNKDKmM3Peodc9ZzgqkzwPHPLMxxXHAj4OOKWZxA="; 48 + hash = "sha256-7wfKvKqDf8LlUiLoevNRxmq8x5wLheOgIeWz72oFcuw="; 50 49 }; 51 50 52 51 pythonRelaxDeps = [ "sqlalchemy" ]; ··· 81 80 nativeCheckInputs = [ 82 81 pytestCheckHook 83 82 psutil 83 + writableTmpDirAsHomeHook 84 84 ] ++ optional-dependencies.dev; 85 85 86 86 disabledTests = 87 87 [ 88 88 # AttributeError: 'DataFrame' object has no attribute 'frame_equal' 89 89 "test_resultset_polars_dataframe" 90 + 90 91 # all of these are broken with later versions of duckdb; see 91 92 # https://github.com/ploomber/jupysql/issues/1030 92 93 "test_resultset_getitem" ··· 102 99 "test_resultset_repr_html_with_reduced_feedback" 103 100 "test_invalid_operation_error" 104 101 "test_resultset_config_autolimit_dict" 102 + 105 103 # fails due to strict warnings 106 104 "test_calling_legacy_plotting_functions_displays_warning" 107 105 ] 108 106 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 109 - # Fatal Python error: Aborted (in matplotlib) 107 + # RuntimeError: *** -[__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil object from objects[1] 110 108 "test_no_errors_with_stored_query" 111 109 ]; 112 110 ··· 125 121 # require js2py (which is unmaintained and insecure) 126 122 "src/tests/test_widget.py" 127 123 ]; 128 - 129 - preCheck = '' 130 - # tests need to write temp data 131 - export HOME=$(mktemp -d) 132 - ''; 133 124 134 125 pythonImportsCheck = [ "sql" ]; 135 126