snowflake-cli: 3.2.2 -> 3.4.1 (#375876)

Changed files
+9 -4
pkgs
by-name
sn
snowflake-cli
+9 -4
pkgs/by-name/sn/snowflake-cli/package.nix
···
python3Packages.buildPythonApplication rec {
pname = "snowflake-cli";
-
version = "3.2.2";
+
version = "3.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "snowflakedb";
repo = "snowflake-cli";
tag = "v${version}";
-
hash = "sha256-1AXp2bCBNuYwnyQMIQn3uLLKdWVznBRK6HcB/E7Yjo8=";
+
hash = "sha256-W+/RW/oTFi7NyJZXlK9Yd3Gggmm+PtmOawWFSrK+SIo=";
};
build-system = with python3Packages; [
···
pytestFlagsArray = [
"-n"
"$NIX_BUILD_CORES"
-
"--snapshot-warn-unused" # Turn unused snapshots into a warning and not a failure
+
"--snapshot-warn-unused"
];
disabledTests = [
···
"integration_experimental"
"test_snow_typer_help_sanitization" # Snapshot needs update?
"test_help_message" # Snapshot needs update?
+
"test_sql_help_if_no_query_file_or_stdin" # Snapshot needs update?
+
"test_multiple_streamlit_raise_error_if_multiple_entities" # Snapshot needs update?
+
"test_replace_and_not_exists_cannot_be_used_together" # Snapshot needs update?
+
"test_format" # Snapshot needs update?
"test_executing_command_sends_telemetry_usage_data" # Fails on mocked version
-
"test_generate_jwt_with_passphrase" # Fails, upstream PR https://github.com/snowflakedb/snowflake-cli/pull/1898
+
"test_internal_application_data_is_sent_if_feature_flag_is_set"
+
"test_if_bundling_dependencies_resolves_requirements" # impure?
];
pythonRelaxDeps = true;