eed22970cd
svn path=/nixpkgs/trunk/; revision=34291
27 lines
585 B
Nix
27 lines
585 B
Nix
{ stdenv, fetchurl, python, gmp }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pycrypto-2.6";
|
|
|
|
src = fetchurl {
|
|
url = "http://pypi.python.org/packages/source/p/pycrypto/${name}.tar.gz";
|
|
md5 = "88dad0a270d1fe83a39e0467a66a22bb";
|
|
};
|
|
|
|
buildInputs = [ python gmp ];
|
|
|
|
buildPhase = "true";
|
|
|
|
installPhase =
|
|
''
|
|
python ./setup.py build_ext --library-dirs=${gmp}/lib
|
|
python ./setup.py install --prefix=$out
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "http://www.pycrypto.org/";
|
|
description = "Python Cryptography Toolkit";
|
|
platforms = stdenv.lib.platforms.gnu;
|
|
};
|
|
}
|