python-packages.nix: strip trailing whitespace

svn path=/nixpkgs/trunk/; revision=27843
This commit is contained in:
Peter Simons 2011-07-20 15:30:40 +00:00
parent 33765b5899
commit 3290213e42

View File

@ -12,7 +12,7 @@ let pythonPackages = python.modules // rec {
inherit python wrapPython setuptools; inherit python wrapPython setuptools;
}; };
setuptools = import ../development/python-modules/setuptools { setuptools = import ../development/python-modules/setuptools {
inherit (pkgs) stdenv fetchurl; inherit (pkgs) stdenv fetchurl;
inherit python wrapPython; inherit python wrapPython;
@ -62,7 +62,7 @@ let pythonPackages = python.modules // rec {
apsw = buildPythonPackage rec { apsw = buildPythonPackage rec {
name = "apsw-3.7.6.2-r1"; name = "apsw-3.7.6.2-r1";
src = fetchurl { src = fetchurl {
url = "http://apsw.googlecode.com/files/${name}.zip"; url = "http://apsw.googlecode.com/files/${name}.zip";
sha1 = "fa4aec08e59fa5964197f59ba42408d64031675b"; sha1 = "fa4aec08e59fa5964197f59ba42408d64031675b";
@ -78,7 +78,7 @@ let pythonPackages = python.modules // rec {
}; };
}; };
argparse = buildPythonPackage (rec { argparse = buildPythonPackage (rec {
name = "argparse-1.1"; name = "argparse-1.1";
@ -228,7 +228,7 @@ let pythonPackages = python.modules // rec {
}; };
}; };
cherrypy = buildPythonPackage (rec { cherrypy = buildPythonPackage (rec {
name = "cherrypy-3.1.2"; name = "cherrypy-3.1.2";
@ -357,10 +357,10 @@ let pythonPackages = python.modules // rec {
}; };
}; };
dtopt = buildPythonPackage rec { dtopt = buildPythonPackage rec {
name = "dtopt-0.1"; name = "dtopt-0.1";
src = fetchurl { src = fetchurl {
url = "http://pypi.python.org/packages/source/d/dtopt/${name}.tar.gz"; url = "http://pypi.python.org/packages/source/d/dtopt/${name}.tar.gz";
md5 = "9a41317149e926fcc408086aedee6bab"; md5 = "9a41317149e926fcc408086aedee6bab";
@ -372,7 +372,7 @@ let pythonPackages = python.modules // rec {
}; };
}; };
eventlet = buildPythonPackage rec { eventlet = buildPythonPackage rec {
name = "eventlet-0.9.16"; name = "eventlet-0.9.16";
@ -395,7 +395,7 @@ let pythonPackages = python.modules // rec {
}; };
}; };
flup = buildPythonPackage (rec { flup = buildPythonPackage (rec {
name = "flup-1.0.2"; name = "flup-1.0.2";
@ -499,7 +499,7 @@ let pythonPackages = python.modules // rec {
}; };
}; };
glance = buildPythonPackage rec { glance = buildPythonPackage rec {
name = "glance-0.1.7"; name = "glance-0.1.7";
@ -520,7 +520,7 @@ let pythonPackages = python.modules // rec {
}; };
}; };
greenlet = buildPythonPackage rec { greenlet = buildPythonPackage rec {
name = "greenlet-0.3.1"; name = "greenlet-0.3.1";
@ -535,7 +535,7 @@ let pythonPackages = python.modules // rec {
}; };
}; };
httplib2 = buildPythonPackage rec { httplib2 = buildPythonPackage rec {
name = "httplib2-0.6.0"; name = "httplib2-0.6.0";
@ -552,11 +552,11 @@ let pythonPackages = python.modules // rec {
}; };
}; };
ipy = buildPythonPackage rec { ipy = buildPythonPackage rec {
version = "0.74"; version = "0.74";
name = "ipy-${version}"; name = "ipy-${version}";
src = fetchurl { src = fetchurl {
url = "http://pypi.python.org/packages/source/I/IPy/IPy-${version}.tar.gz"; url = "http://pypi.python.org/packages/source/I/IPy/IPy-${version}.tar.gz";
md5 = "f4f7ddc7c5e55a47222a5cc6c0a87b6d"; md5 = "f4f7ddc7c5e55a47222a5cc6c0a87b6d";
@ -570,7 +570,7 @@ let pythonPackages = python.modules // rec {
}; };
}; };
jinja2 = buildPythonPackage { jinja2 = buildPythonPackage {
name = "jinja2-2.2.1"; name = "jinja2-2.2.1";
@ -591,7 +591,7 @@ let pythonPackages = python.modules // rec {
}; };
}; };
libcloud = buildPythonPackage (rec { libcloud = buildPythonPackage (rec {
name = "libcloud-0.3.1"; name = "libcloud-0.3.1";
@ -610,7 +610,7 @@ let pythonPackages = python.modules // rec {
}; };
}); });
lockfile = buildPythonPackage rec { lockfile = buildPythonPackage rec {
name = "lockfile-0.9.1"; name = "lockfile-0.9.1";
@ -636,7 +636,7 @@ let pythonPackages = python.modules // rec {
}; };
propagatedBuildInputs = [unittest2]; propagatedBuildInputs = [unittest2];
}; };
lxml = buildPythonPackage ( rec { lxml = buildPythonPackage ( rec {
name = "lxml-2.2.2"; name = "lxml-2.2.2";
@ -674,11 +674,11 @@ let pythonPackages = python.modules // rec {
}; };
}; };
m2crypto = buildPythonPackage rec { m2crypto = buildPythonPackage rec {
version = "0.21.1"; version = "0.21.1";
name = "m2crypto-${version}"; name = "m2crypto-${version}";
src = fetchurl { src = fetchurl {
url = "http://pypi.python.org/packages/source/M/M2Crypto/M2Crypto-${version}.tar.gz"; url = "http://pypi.python.org/packages/source/M/M2Crypto/M2Crypto-${version}.tar.gz";
md5 = "f93d8462ff7646397a9f77a2fe602d17"; md5 = "f93d8462ff7646397a9f77a2fe602d17";
@ -696,7 +696,7 @@ let pythonPackages = python.modules // rec {
}; };
}; };
markdown = buildPythonPackage rec { markdown = buildPythonPackage rec {
version = "2.0.3"; version = "2.0.3";
name = "markdown-${version}"; name = "markdown-${version}";
@ -713,7 +713,7 @@ let pythonPackages = python.modules // rec {
}; };
}; };
matplotlib = buildPythonPackage ( rec { matplotlib = buildPythonPackage ( rec {
name = "matplotlib-0.99.1.2"; name = "matplotlib-0.99.1.2";
@ -751,7 +751,7 @@ let pythonPackages = python.modules // rec {
}; };
}); });
mock = buildPythonPackage (rec { mock = buildPythonPackage (rec {
name = "mock-0.7.0"; name = "mock-0.7.0";
@ -788,7 +788,7 @@ let pythonPackages = python.modules // rec {
}; };
}; };
mutagen = buildPythonPackage (rec { mutagen = buildPythonPackage (rec {
name = "mutagen-1.20"; name = "mutagen-1.20";
@ -858,7 +858,7 @@ let pythonPackages = python.modules // rec {
}; };
}); });
netaddr = buildPythonPackage rec { netaddr = buildPythonPackage rec {
name = "netaddr-0.7.5"; name = "netaddr-0.7.5";
@ -875,7 +875,7 @@ let pythonPackages = python.modules // rec {
}; };
}; };
nevow = buildPythonPackage (rec { nevow = buildPythonPackage (rec {
name = "nevow-${version}"; name = "nevow-${version}";
version = "0.10.0"; version = "0.10.0";
@ -1070,7 +1070,7 @@ let pythonPackages = python.modules // rec {
paste = buildPythonPackage rec { paste = buildPythonPackage rec {
name = "paste-1.7.5.1"; name = "paste-1.7.5.1";
src = fetchurl { src = fetchurl {
url = http://pypi.python.org/packages/source/P/Paste/Paste-1.7.5.1.tar.gz; url = http://pypi.python.org/packages/source/P/Paste/Paste-1.7.5.1.tar.gz;
md5 = "7ea5fabed7dca48eb46dc613c4b6c4ed"; md5 = "7ea5fabed7dca48eb46dc613c4b6c4ed";
@ -1086,11 +1086,11 @@ let pythonPackages = python.modules // rec {
}; };
}; };
paste_deploy = buildPythonPackage rec { paste_deploy = buildPythonPackage rec {
version = "1.3.4"; version = "1.3.4";
name = "paste-deploy-${version}"; name = "paste-deploy-${version}";
src = fetchurl { src = fetchurl {
url = "http://pypi.python.org/packages/source/P/PasteDeploy/PasteDeploy-${version}.tar.gz"; url = "http://pypi.python.org/packages/source/P/PasteDeploy/PasteDeploy-${version}.tar.gz";
md5 = "eb4b3e2543d54401249c2cbd9f2d014f"; md5 = "eb4b3e2543d54401249c2cbd9f2d014f";
@ -1106,7 +1106,7 @@ let pythonPackages = python.modules // rec {
}; };
}; };
pexpect = buildPythonPackage { pexpect = buildPythonPackage {
name = "pexpect-2.3"; name = "pexpect-2.3";
@ -1143,10 +1143,10 @@ let pythonPackages = python.modules // rec {
}; };
}; };
prettytable = buildPythonPackage rec { prettytable = buildPythonPackage rec {
name = "prettytable-0.5"; name = "prettytable-0.5";
src = fetchurl { src = fetchurl {
url = "http://pypi.python.org/packages/source/P/PrettyTable/${name}.tar.gz"; url = "http://pypi.python.org/packages/source/P/PrettyTable/${name}.tar.gz";
md5 = "13a6930d775395f393afd86948afa4fa"; md5 = "13a6930d775395f393afd86948afa4fa";
@ -1158,7 +1158,7 @@ let pythonPackages = python.modules // rec {
}; };
}; };
psycopg2 = buildPythonPackage rec { psycopg2 = buildPythonPackage rec {
name = "psycopg2-2.0.13"; name = "psycopg2-2.0.13";
@ -1377,7 +1377,7 @@ let pythonPackages = python.modules // rec {
}; };
}); });
pysvn = pkgs.stdenv.mkDerivation { pysvn = pkgs.stdenv.mkDerivation {
name = "pysvn-1.7.2"; name = "pysvn-1.7.2";
@ -1424,7 +1424,7 @@ let pythonPackages = python.modules // rec {
}; };
}; };
pyutil = buildPythonPackage (rec { pyutil = buildPythonPackage (rec {
name = "pyutil-1.7.9"; name = "pyutil-1.7.9";
@ -1543,10 +1543,10 @@ let pythonPackages = python.modules // rec {
}; };
}; };
routes = buildPythonPackage rec { routes = buildPythonPackage rec {
name = "routes-1.12.3"; name = "routes-1.12.3";
src = fetchurl { src = fetchurl {
url = http://pypi.python.org/packages/source/R/Routes/Routes-1.12.3.tar.gz; url = http://pypi.python.org/packages/source/R/Routes/Routes-1.12.3.tar.gz;
md5 = "9740ff424ff6b841632c784a38fb2be3"; md5 = "9740ff424ff6b841632c784a38fb2be3";
@ -1560,11 +1560,11 @@ let pythonPackages = python.modules // rec {
}; };
}; };
scripttest = buildPythonPackage rec { scripttest = buildPythonPackage rec {
version = "1.1.1"; version = "1.1.1";
name = "scripttest-${version}"; name = "scripttest-${version}";
src = fetchurl { src = fetchurl {
url = "http://pypi.python.org/packages/source/S/ScriptTest/ScriptTest-${version}.tar.gz"; url = "http://pypi.python.org/packages/source/S/ScriptTest/ScriptTest-${version}.tar.gz";
md5 = "592ce890764c3f546d35b4d7c40c32ef"; md5 = "592ce890764c3f546d35b4d7c40c32ef";
@ -1578,7 +1578,7 @@ let pythonPackages = python.modules // rec {
}; };
}; };
setuptoolsDarcs = buildPythonPackage { setuptoolsDarcs = buildPythonPackage {
name = "setuptools-darcs-1.2.9"; name = "setuptools-darcs-1.2.9";
@ -1766,7 +1766,7 @@ let pythonPackages = python.modules // rec {
unittest2 = buildPythonPackage rec { unittest2 = buildPythonPackage rec {
name = "unittest2-0.5.1"; name = "unittest2-0.5.1";
src = fetchurl { src = fetchurl {
url = "http://pypi.python.org/packages/source/u/unittest2/${name}.tar.gz"; url = "http://pypi.python.org/packages/source/u/unittest2/${name}.tar.gz";
md5 = "a0af5cac92bbbfa0c3b0e99571390e0f"; md5 = "a0af5cac92bbbfa0c3b0e99571390e0f";
@ -1778,11 +1778,11 @@ let pythonPackages = python.modules // rec {
}; };
}; };
webob = buildPythonPackage rec { webob = buildPythonPackage rec {
version = "1.0.6"; version = "1.0.6";
name = "webob-${version}"; name = "webob-${version}";
src = fetchurl { src = fetchurl {
url = "http://pypi.python.org/packages/source/W/WebOb/WebOb-${version}.zip"; url = "http://pypi.python.org/packages/source/W/WebOb/WebOb-${version}.zip";
md5 = "8e46dd755f6998d471bfbcb4def897ff"; md5 = "8e46dd755f6998d471bfbcb4def897ff";
@ -1799,11 +1799,11 @@ let pythonPackages = python.modules // rec {
}; };
}; };
webtest = buildPythonPackage rec { webtest = buildPythonPackage rec {
version = "1.2.3"; version = "1.2.3";
name = "webtest-${version}"; name = "webtest-${version}";
src = fetchurl { src = fetchurl {
url = "http://pypi.python.org/packages/source/W/WebTest/WebTest-${version}.tar.gz"; url = "http://pypi.python.org/packages/source/W/WebTest/WebTest-${version}.tar.gz";
md5 = "585f9331467e6d99acaba4051c1c5878"; md5 = "585f9331467e6d99acaba4051c1c5878";
@ -1819,7 +1819,7 @@ let pythonPackages = python.modules // rec {
wxPython = wxPython28; wxPython = wxPython28;
wxPython26 = import ../development/python-modules/wxPython/2.6.nix { wxPython26 = import ../development/python-modules/wxPython/2.6.nix {
inherit (pkgs) stdenv fetchurl pkgconfig; inherit (pkgs) stdenv fetchurl pkgconfig;
@ -1827,14 +1827,14 @@ let pythonPackages = python.modules // rec {
wxGTK = pkgs.wxGTK26; wxGTK = pkgs.wxGTK26;
}; };
wxPython28 = import ../development/python-modules/wxPython/2.8.nix { wxPython28 = import ../development/python-modules/wxPython/2.8.nix {
inherit (pkgs) stdenv fetchurl pkgconfig; inherit (pkgs) stdenv fetchurl pkgconfig;
inherit pythonPackages; inherit pythonPackages;
wxGTK = pkgs.wxGTK28; wxGTK = pkgs.wxGTK28;
}; };
zbase32 = buildPythonPackage (rec { zbase32 = buildPythonPackage (rec {
name = "zbase32-1.1.2"; name = "zbase32-1.1.2";