EitherT package:validation-selective

Transform an Either into a Validation.
>>> eitherToValidation (Right "whoop")
Success "whoop"
>>> eitherToValidation (Left "nahh")
Failure "nahh"