I would recommend the signature
isPrime :: Integer -> Bool
A signature isPrime :: Int -> Bool would exclude fast tests for largish numbers, since those tests would often overflow then (technically that is also true of Integer, at least in the version provided by integer-gmp, but you will most likely be out of memory long before that matters, so we can maintain the fiction of an infinite Integer type).
A type isPrime :: Integral a => a -> Bool would be a lie with any feasible implementation. One could have an instance of Integral for a type modeling Z[sqrt(2)] (though for such a type toInteger would be unfaithful), for such a type, 2 would not be a prime, how would one detect that with a generic test?
Or consider finite types modeling a factor ring Z/(n). An Ord instance for such types would be incompatible with the arithmetic, but we already have that for Int etc. For example, in Z(6) = {0,1,2,3,4,5}, the primes would be 2, 3 and 4 (note that none of them is irreducible, 2 = 4*2, 3 = 3*3, 4 = 2*2).
So the only meaningful and feasible test is, "is it a rational (or natural) prime whose value happens to be in the range of the type?". That is captured (as good as possible without sacrificing too much speed) in the type isPrime :: Integer -> Bool, to be combined with a toInteger when appropriate.