pycrypto: fix build on darwin

This commit is contained in:
Jason "Don" O'Conal 2014-05-14 11:31:37 +10:00
parent 158462e323
commit b4be4e5270

View File

@ -11,9 +11,12 @@ buildPythonPackage rec {
buildInputs = [ gmp ];
# error: AF_UNIX path too long
doCheck = !stdenv.isDarwin;
meta = {
homepage = "http://www.pycrypto.org/";
description = "Python Cryptography Toolkit";
platforms = stdenv.lib.platforms.gnu;
platforms = stdenv.lib.platforms.unix;
};
}