goobook: fix build on darwin

This commit is contained in:
Jason "Don" O'Conal
2014-05-05 11:43:23 +10:00
parent 97262a59b5
commit 05095ec48d
2 changed files with 4 additions and 5 deletions

View File

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