11{
22 lib ,
3- stdenv ,
43 buildPythonPackage ,
54 fetchFromGitHub ,
65
2221
2322buildPythonPackage rec {
2423 pname = "databricks-sdk" ;
25- version = "0.45 .0" ;
24+ version = "0.46 .0" ;
2625 pyproject = true ;
2726
2827 src = fetchFromGitHub {
2928 owner = "databricks" ;
3029 repo = "databricks-sdk-py" ;
3130 tag = "v${ version } " ;
32- hash = "sha256-SoE8MgwOhm82ymjaZQZCzw7hd5DMWxSvgaAwIGlm9cQ =" ;
31+ hash = "sha256-bvtIeysj3FW4Kj2WZeKSGwkqKoWIxKIzJFiduNlaBWE =" ;
3332 } ;
3433
3534 build-system = [
@@ -54,28 +53,23 @@ buildPythonPackage rec {
5453 requests-mock
5554 ] ;
5655
57- disabledTests =
58- [
59- # Require internet access
60- # ValueError: default auth: cannot configure default credentials, please check...
61- "test_azure_cli_does_not_specify_tenant_id_with_msi"
62- "test_azure_cli_fallback"
63- "test_azure_cli_user_no_management_access"
64- "test_azure_cli_user_with_management_access"
65- "test_azure_cli_with_warning_on_stderr"
66- "test_azure_cli_workspace_header_present"
67- "test_config_azure_cli_host"
68- "test_config_azure_cli_host_and_resource_id"
69- "test_config_azure_cli_host_and_resource_i_d_configuration_precedence"
70- "test_load_azure_tenant_id_404"
71- "test_load_azure_tenant_id_happy_path"
72- "test_load_azure_tenant_id_no_location_header"
73- "test_load_azure_tenant_id_unparsable_location_header"
74- ]
75- ++ lib . optionals ( stdenv . hostPlatform . isDarwin && stdenv . hostPlatform . isx86_64 ) [
76- # requests.exceptions.ChunkedEncodingError: ("Connection broken: ConnectionResetError(54, 'Connection reset by peer')", ConnectionResetError(54, 'Connection reset by peer'))
77- "test_github_oidc_flow_works_with_azure"
78- ] ;
56+ disabledTests = [
57+ # Require internet access
58+ # ValueError: default auth: cannot configure default credentials, please check...
59+ "test_azure_cli_does_not_specify_tenant_id_with_msi"
60+ "test_azure_cli_fallback"
61+ "test_azure_cli_user_no_management_access"
62+ "test_azure_cli_user_with_management_access"
63+ "test_azure_cli_with_warning_on_stderr"
64+ "test_azure_cli_workspace_header_present"
65+ "test_config_azure_cli_host"
66+ "test_config_azure_cli_host_and_resource_id"
67+ "test_config_azure_cli_host_and_resource_i_d_configuration_precedence"
68+ "test_load_azure_tenant_id_404"
69+ "test_load_azure_tenant_id_happy_path"
70+ "test_load_azure_tenant_id_no_location_header"
71+ "test_load_azure_tenant_id_unparsable_location_header"
72+ ] ;
7973
8074 __darwinAllowLocalNetworking = true ;
8175
0 commit comments