2017-01-05 06:40:43 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, python, buildPythonPackage, gmp }:
|
2006-12-13 21:30:09 +01:00
|
|
|
|
2012-12-03 07:59:32 +01:00
|
|
|
buildPythonPackage rec {
|
2013-12-04 04:25:38 +01:00
|
|
|
name = "pycrypto-2.6.1";
|
2012-12-03 07:59:32 +01:00
|
|
|
namePrefix = "";
|
2010-07-28 15:07:48 +02:00
|
|
|
|
2006-12-13 21:30:09 +01:00
|
|
|
src = fetchurl {
|
2016-04-26 14:38:03 +02:00
|
|
|
url = "mirror://pypi/p/pycrypto/${name}.tar.gz";
|
2013-12-04 04:25:38 +01:00
|
|
|
sha256 = "0g0ayql5b9mkjam8hym6zyg6bv77lbh66rv1fyvgqb17kfc1xkpj";
|
2006-12-13 21:30:09 +01:00
|
|
|
};
|
2010-07-28 15:07:48 +02:00
|
|
|
|
2017-01-05 06:40:43 +01:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2013-7459.patch";
|
|
|
|
url = "https://anonscm.debian.org/cgit/collab-maint/python-crypto.git/plain/debian/patches/CVE-2013-7459.patch?h=debian/2.6.1-7";
|
|
|
|
sha256 = "01r7aghnchc1bpxgdv58qyi2085gh34bxini973xhy3ks7fq3ir9";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2015-01-02 21:47:43 +01:00
|
|
|
preConfigure = ''
|
|
|
|
sed -i 's,/usr/include,/no-such-dir,' configure
|
|
|
|
sed -i "s!,'/usr/include/'!!" setup.py
|
|
|
|
'';
|
|
|
|
|
2014-08-23 19:18:12 +02:00
|
|
|
buildInputs = stdenv.lib.optional (!python.isPypy or false) gmp; # optional for pypy
|
2014-05-05 03:43:23 +02:00
|
|
|
|
2014-08-23 19:18:12 +02:00
|
|
|
doCheck = !(python.isPypy or stdenv.isDarwin); # error: AF_UNIX path too long
|
2014-05-14 03:31:37 +02:00
|
|
|
|
2010-05-20 12:41:10 +02:00
|
|
|
meta = {
|
2010-07-28 15:07:48 +02:00
|
|
|
homepage = "http://www.pycrypto.org/";
|
2010-05-20 12:41:10 +02:00
|
|
|
description = "Python Cryptography Toolkit";
|
2014-05-05 03:43:23 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-05-20 12:41:10 +02:00
|
|
|
};
|
2006-12-13 21:30:09 +01:00
|
|
|
}
|