2010-05-20 12:41:10 +02:00
|
|
|
{ stdenv, fetchurl, python, gmp }:
|
2006-12-13 21:30:09 +01:00
|
|
|
|
2010-05-20 12:41:10 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2012-05-30 23:12:04 +02:00
|
|
|
name = "pycrypto-2.6";
|
2010-07-28 15:07:48 +02:00
|
|
|
|
2006-12-13 21:30:09 +01:00
|
|
|
src = fetchurl {
|
2010-07-28 15:09:44 +02:00
|
|
|
url = "http://pypi.python.org/packages/source/p/pycrypto/${name}.tar.gz";
|
2012-05-30 23:12:04 +02:00
|
|
|
md5 = "88dad0a270d1fe83a39e0467a66a22bb";
|
2006-12-13 21:30:09 +01:00
|
|
|
};
|
2010-07-28 15:07:48 +02:00
|
|
|
|
2010-05-20 12:41:10 +02:00
|
|
|
buildInputs = [ python gmp ];
|
2010-07-28 15:07:48 +02:00
|
|
|
|
2006-12-13 21:30:09 +01:00
|
|
|
buildPhase = "true";
|
2010-07-28 15:07:48 +02:00
|
|
|
|
2010-05-20 12:41:10 +02:00
|
|
|
installPhase =
|
|
|
|
''
|
|
|
|
python ./setup.py build_ext --library-dirs=${gmp}/lib
|
|
|
|
python ./setup.py install --prefix=$out
|
|
|
|
'';
|
|
|
|
|
|
|
|
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";
|
2010-07-28 15:10:18 +02:00
|
|
|
platforms = stdenv.lib.platforms.gnu;
|
2010-05-20 12:41:10 +02:00
|
|
|
};
|
2006-12-13 21:30:09 +01:00
|
|
|
}
|