Files
nixpkgs/pkgs/development/python-modules/twisted/default.nix
T

14 lines
466 B
Nix
Raw Normal View History

2006-12-13 18:04:03 +00:00
{stdenv, fetchurl, python, ZopeInterface}:
stdenv.mkDerivation {
name = "twisted-2.5.0";
2006-12-13 18:04:03 +00:00
src = fetchurl {
url = http://tmrc.mit.edu/mirror/twisted/Twisted/2.5/Twisted-2.5.0.tar.bz2;
sha256 = "1kfj4354lm4kphm317giyldykyd17lba2xd7y512lxc38hzxzcpk";
2006-12-13 18:04:03 +00:00
};
2006-12-13 20:30:09 +00:00
buildInputs = [python];
propagatedBuildInputs = [ZopeInterface];
2006-12-13 18:04:03 +00:00
buildPhase = "true";
2006-12-13 20:30:09 +00:00
installCommand = "PYTHONPATH=$(toPythonPath $out):$PYTHONPATH; python ./setup.py install --prefix=$out";
2006-12-13 18:04:03 +00:00
}