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 {
|
|
|
|
name = "pycrypto-2.1.0";
|
|
|
|
|
2006-12-13 21:30:09 +01:00
|
|
|
src = fetchurl {
|
2010-05-20 12:41:10 +02:00
|
|
|
url = "http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/${name}.tar.gz";
|
|
|
|
sha256 = "18nq49l8wplg54hz9h26n61rq49vjzmy5xzlkm1g0j82x8i1qgi5";
|
2006-12-13 21:30:09 +01:00
|
|
|
};
|
2010-05-20 12:41:10 +02:00
|
|
|
|
|
|
|
buildInputs = [ python gmp ];
|
|
|
|
|
2006-12-13 21:30:09 +01:00
|
|
|
buildPhase = "true";
|
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 = {
|
|
|
|
homepage = http://www.dlitz.net/software/pycrypto/;
|
|
|
|
description = "Python Cryptography Toolkit";
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
2006-12-13 21:30:09 +01:00
|
|
|
}
|