How to query authors by custom taxonomy?

Not sure why you would try this with taxonomy.

I would suggest making a meta_key “country” with the values.

Then you can query it like in the documentation:

$user_query = new WP_User_Query( array( 'meta_key' => 'country', 'meta_value' => 'Israel' ) );

Not sure why your taxonomy-query doesnt work, looks fine also, i use it like this for my post-types.

How did you try? Maybe also post the function, where you register the taxonomy, where did you attach it to?