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>2006-12-13 20:30:09 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-12-13 20:30:09 +0000
commit9ea7038c5131b8eb435d7b0b1ba3a8795f3935b0 (patch)
tree6d9ebb2ddf7311dac603243e5b4b3326bdcbd0f0 /pkgs/development/python-modules/twisted
parent0a91ca30911e54af6fa76c4c17ade3f2f8ba4674 (diff)
downloadnixlib-9ea7038c5131b8eb435d7b0b1ba3a8795f3935b0.tar
nixlib-9ea7038c5131b8eb435d7b0b1ba3a8795f3935b0.tar.gz
nixlib-9ea7038c5131b8eb435d7b0b1ba3a8795f3935b0.tar.bz2
nixlib-9ea7038c5131b8eb435d7b0b1ba3a8795f3935b0.tar.lz
nixlib-9ea7038c5131b8eb435d7b0b1ba3a8795f3935b0.tar.xz
nixlib-9ea7038c5131b8eb435d7b0b1ba3a8795f3935b0.tar.zst
nixlib-9ea7038c5131b8eb435d7b0b1ba3a8795f3935b0.zip
* BitTorrent 5.0.3.
* wxPython 2.6.3.

svn path=/nixpkgs/trunk/; revision=7341
Diffstat (limited to 'pkgs/development/python-modules/twisted')
-rw-r--r--pkgs/development/python-modules/twisted/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/twisted/default.nix b/pkgs/development/python-modules/twisted/default.nix
index cbcadbb99cbe..37a42faf8568 100644
--- a/pkgs/development/python-modules/twisted/default.nix
+++ b/pkgs/development/python-modules/twisted/default.nix
@@ -6,7 +6,8 @@ stdenv.mkDerivation {
     url = http://tmrc.mit.edu/mirror/twisted/Twisted/2.4/Twisted-2.4.0.tar.bz2;
     md5 = "42eb0c8fd0f8707a39fff1dd6adab27d";
   };
-  buildInputs = [python ZopeInterface];
+  buildInputs = [python];
+  propagatedBuildInputs = [ZopeInterface];
   buildPhase = "true";
-  installPhase = "PYTHONPATH=$(toPythonPath $out):$PYTHONPATH; python ./setup.py install --prefix=$out";
+  installCommand = "PYTHONPATH=$(toPythonPath $out):$PYTHONPATH; python ./setup.py install --prefix=$out";
 }