2012-12-03 07:59:32 +01:00
|
|
|
{ stdenv, fetchurl, python, buildPythonPackage, gmp }:
|
2006-12-13 21:30:09 +01:00
|
|
|
|
2012-12-03 07:59:32 +01:00
|
|
|
buildPythonPackage rec {
|
2012-05-30 23:12:04 +02:00
|
|
|
name = "pycrypto-2.6";
|
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 {
|
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
|
|
|
|
2012-12-03 07:59:32 +01:00
|
|
|
buildPhase =
|
2010-05-20 12:41:10 +02:00
|
|
|
''
|
|
|
|
python ./setup.py build_ext --library-dirs=${gmp}/lib
|
|
|
|
'';
|
|
|
|
|
2012-12-03 07:59:32 +01:00
|
|
|
# installPhase =
|
|
|
|
# ''
|
|
|
|
# python ./setup.py install --prefix=$out
|
|
|
|
# '';
|
|
|
|
|
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";
|
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
|
|
|
}
|