mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
pycrypto: fix build on darwin
This commit is contained in:
parent
158462e323
commit
b4be4e5270
@ -11,9 +11,12 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
buildInputs = [ gmp ];
|
buildInputs = [ gmp ];
|
||||||
|
|
||||||
|
# error: AF_UNIX path too long
|
||||||
|
doCheck = !stdenv.isDarwin;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://www.pycrypto.org/";
|
homepage = "http://www.pycrypto.org/";
|
||||||
description = "Python Cryptography Toolkit";
|
description = "Python Cryptography Toolkit";
|
||||||
platforms = stdenv.lib.platforms.gnu;
|
platforms = stdenv.lib.platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user