nixpkgs/pkgs/development/python-modules/pycrypto/default.nix

35 lines
1,019 B
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, python, buildPythonPackage, gmp }:
2012-12-03 06:59:32 +00:00
buildPythonPackage rec {
name = "pycrypto-2.6.1";
2012-12-03 06:59:32 +00:00
namePrefix = "";
src = fetchurl {
url = "mirror://pypi/p/pycrypto/${name}.tar.gz";
sha256 = "0g0ayql5b9mkjam8hym6zyg6bv77lbh66rv1fyvgqb17kfc1xkpj";
};
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 20:47:43 +00:00
preConfigure = ''
sed -i 's,/usr/include,/no-such-dir,' configure
sed -i "s!,'/usr/include/'!!" setup.py
'';
2014-08-23 17:18:12 +00:00
buildInputs = stdenv.lib.optional (!python.isPypy or false) gmp; # optional for pypy
2014-05-05 01:43:23 +00:00
2014-08-23 17:18:12 +00:00
doCheck = !(python.isPypy or stdenv.isDarwin); # error: AF_UNIX path too long
2014-05-14 01:31:37 +00:00
meta = {
homepage = "http://www.pycrypto.org/";
description = "Python Cryptography Toolkit";
2014-05-05 01:43:23 +00:00
platforms = stdenv.lib.platforms.unix;
};
}