about summary refs log tree commit diff
path: root/pkgs/development/python-modules/twisted
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2008-09-02 13:51:32 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2008-09-02 13:51:32 +0000
commit5d9dfc1e604f0cd9d6a87e50e500857121a069cc (patch)
tree6c694aa16f6bf9708e00967379f212fe53132b15 /pkgs/development/python-modules/twisted
parent2b119ba405637ea611c9855fddd2bef9cd374fd3 (diff)
* Removed $installCommand, it's no longer needed since we split the
  install and fixup phases.  You can just override installPhase.

svn path=/nixpkgs/trunk/; revision=12787
Diffstat (limited to 'pkgs/development/python-modules/twisted')
-rw-r--r--pkgs/development/python-modules/twisted/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/twisted/default.nix b/pkgs/development/python-modules/twisted/default.nix
index 2d07005723635..ef2b2159169fb 100644
--- a/pkgs/development/python-modules/twisted/default.nix
+++ b/pkgs/development/python-modules/twisted/default.nix
@@ -2,12 +2,15 @@
 
 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];
-  buildPhase = "true";
-  installCommand = "PYTHONPATH=$(toPythonPath $out):$PYTHONPATH; python ./setup.py install --prefix=$out";
+  
+  installPhase = "PYTHONPATH=$(toPythonPath $out):$PYTHONPATH; python ./setup.py install --prefix=$out";
 }