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

stdenv.mkDerivation {
  name = "twisted-2.4.0";
  src = fetchurl {
    url = http://tmrc.mit.edu/mirror/twisted/Twisted/2.4/Twisted-2.4.0.tar.bz2;
    md5 = "42eb0c8fd0f8707a39fff1dd6adab27d";
  };
  buildInputs = [python ZopeInterface];
  buildPhase = "true";
  installPhase = "PYTHONPATH=$(toPythonPath $out):$PYTHONPATH; python ./setup.py install --prefix=$out";
}