about summary refs log tree commit diff
path: root/pkgs/development/python-modules/twisted
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-05-24 21:25:29 +0000
committerLudovic Courtès <ludo@gnu.org>2009-05-24 21:25:29 +0000
commit5b7525c631891a51529795fc037eb6a98ba1afde (patch)
treeeec0140ebda38e728b7367e3750c3223cf647b87 /pkgs/development/python-modules/twisted
parent4fc80e949711e9792f896e06fc5b3c6fdc593c4e (diff)
Move Twisted to `buildPythonPackage'.
svn path=/nixpkgs/trunk/; revision=15709
Diffstat (limited to 'pkgs/development/python-modules/twisted')
-rw-r--r--pkgs/development/python-modules/twisted/default.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/twisted/default.nix b/pkgs/development/python-modules/twisted/default.nix
deleted file mode 100644
index a34907e261c4c..0000000000000
--- a/pkgs/development/python-modules/twisted/default.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{stdenv, fetchurl, python, ZopeInterface, makeWrapper}:
-
-stdenv.mkDerivation {
-  name = "twisted-8.1.0";
-  src = fetchurl {
-    url = http://tmrc.mit.edu/mirror/twisted/Twisted/8.1/Twisted-8.1.0.tar.bz2;
-    sha256 = "0q25zbr4xzknaghha72mq57kh53qw1bf8csgp63pm9sfi72qhirl";
-  };
-  buildInputs = [python];
-
-  propagatedBuildInputs = [ZopeInterface makeWrapper];
-
-  installPhase = ''
-     python ./setup.py install --prefix=$out --install-lib=$(toPythonPath $out) -O1
-     for n in $out/bin/*; do wrapProgram $n --set PYTHONPATH "$(toPythonPath $out):$PYTHONPATH:\$PYTHONPATH"; done
-  '';
-}