about summary refs log tree commit diff
path: root/pkgs/development/python-modules/twisted
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2008-09-19 10:07:57 +0000
committerPeter Simons <simons@cryp.to>2008-09-19 10:07:57 +0000
commit05d7c131d105e9e51b57e98bc8ed0f5bdb81ae62 (patch)
tree0129f33007efb5888c0b142032198b7f8ac7b367 /pkgs/development/python-modules/twisted
parentf3ae22fa5fed09ee65f095e123f70c9a6400c2ea (diff)
downloadnixlib-05d7c131d105e9e51b57e98bc8ed0f5bdb81ae62.tar
nixlib-05d7c131d105e9e51b57e98bc8ed0f5bdb81ae62.tar.gz
nixlib-05d7c131d105e9e51b57e98bc8ed0f5bdb81ae62.tar.bz2
nixlib-05d7c131d105e9e51b57e98bc8ed0f5bdb81ae62.tar.lz
nixlib-05d7c131d105e9e51b57e98bc8ed0f5bdb81ae62.tar.xz
nixlib-05d7c131d105e9e51b57e98bc8ed0f5bdb81ae62.tar.zst
nixlib-05d7c131d105e9e51b57e98bc8ed0f5bdb81ae62.zip
Re-apply Eelco's "installCommand --> installPhase" patch.
svn path=/nixpkgs/trunk/; revision=12892
Diffstat (limited to 'pkgs/development/python-modules/twisted')
-rw-r--r--pkgs/development/python-modules/twisted/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/twisted/default.nix b/pkgs/development/python-modules/twisted/default.nix
index d80054e05535..a34907e261c4 100644
--- a/pkgs/development/python-modules/twisted/default.nix
+++ b/pkgs/development/python-modules/twisted/default.nix
@@ -7,10 +7,10 @@ stdenv.mkDerivation {
     sha256 = "0q25zbr4xzknaghha72mq57kh53qw1bf8csgp63pm9sfi72qhirl";
   };
   buildInputs = [python];
+
   propagatedBuildInputs = [ZopeInterface makeWrapper];
-  buildPhase = "true";
-  installCommand =
-  ''
+
+  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
   '';