3
0
Fork 0
forked from mirrors/nixpkgs

* Some Python packages.

svn path=/nixpkgs/trunk/; revision=7339
This commit is contained in:
Eelco Dolstra 2006-12-13 18:04:03 +00:00
parent 15c96da276
commit e6f589d4bf
4 changed files with 36 additions and 4 deletions

View file

@ -0,0 +1,12 @@
{stdenv, fetchurl, python}:
stdenv.mkDerivation {
name = "ZopeInterface-3.1.0c1";
src = fetchurl {
url = http://www.zope.org/Products/ZopeInterface/3.1.0c1/ZopeInterface-3.1.0c1.tgz;
md5 = "f34cb95f2fbdbe3f1850c95cefddbd2c";
};
buildInputs = [python];
buildPhase = "true";
installPhase = "python ./setup.py install --prefix=$out";
}

View file

@ -0,0 +1,12 @@
{stdenv, fetchurl, python, ZopeInterface}:
stdenv.mkDerivation {
name = "twisted-2.4.0";
src = fetchurl {
url = http://tmrc.mit.edu/mirror/twisted/Twisted/2.4/Twisted-2.4.0.tar.bz2;
md5 = "42eb0c8fd0f8707a39fff1dd6adab27d";
};
buildInputs = [python ZopeInterface];
buildPhase = "true";
installPhase = "PYTHONPATH=$(toPythonPath $out):$PYTHONPATH; python ./setup.py install --prefix=$out";
}

View file

@ -1,11 +1,11 @@
{stdenv, fetchurl, python, pygtk, makeWrapper}:
stdenv.mkDerivation {
name = "bittorrent-4.4.0";
name = "bittorrent-5.0.3";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/BitTorrent-4.4.0.tar.gz;
md5 = "74d4b48202c28f0b27e989b6d5f5b214";
url = http://download.bittorrent.com/dl/BitTorrent-5.0.3.tar.gz;
md5 = "592363a33c35e9f66759a736dbf7e038";
};
buildInputs = [python pygtk];
inherit python pygtk makeWrapper;

View file

@ -1961,10 +1961,18 @@ rec {
inherit (gtkLibs) glib gtk;
};
wxPython = import ../development/python-modules/wxPython-2.5 {
wxPython = import ../development/python-modules/wxPython {
inherit fetchurl stdenv pkgconfig wxGTK python;
};
twisted = import ../development/python-modules/twisted {
inherit fetchurl stdenv python ZopeInterface;
};
ZopeInterface = import ../development/python-modules/ZopeInterface {
inherit fetchurl stdenv python;
};
### SERVERS