about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pycrypto/default.nix
blob: 67413fa9370877b069eb7646db445349ffb7ce86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl, python, gmp}:

stdenv.mkDerivation {
  name = "pycrypto-2.0.1";
  src = fetchurl {
    url = http://www.amk.ca/files/python/crypto/pycrypto-2.0.1.tar.gz;
    md5 = "4d5674f3898a573691ffb335e8d749cd";
  };
  buildInputs = [python gmp];
  buildPhase = "true";
  installPhase = "
    python ./setup.py build_ext --library-dirs=${gmp}/lib
    python ./setup.py install --prefix=$out
  ";
}