pkgs/top-level/python-packages.nix: stripped trailing whitespace

svn path=/nixpkgs/trunk/; revision=19669
This commit is contained in:
Peter Simons 2010-01-26 14:52:56 +00:00
parent 0c46b7b4d8
commit 0d6a9b979d

View File

@ -105,23 +105,23 @@ rec {
genshi = buildPythonPackage { genshi = buildPythonPackage {
name = "genshi-0.5.1"; name = "genshi-0.5.1";
src = fetchurl { src = fetchurl {
url = http://ftp.edgewall.com/pub/genshi/Genshi-0.5.1.tar.bz2; url = http://ftp.edgewall.com/pub/genshi/Genshi-0.5.1.tar.bz2;
sha256 = "1g2xw3zvgz59ilv7mrdlnvfl6ph8lwflwd4jr6zwrca2zhj7d8rs"; sha256 = "1g2xw3zvgz59ilv7mrdlnvfl6ph8lwflwd4jr6zwrca2zhj7d8rs";
}; };
buildInputs = [ pkgs.setuptools ]; buildInputs = [ pkgs.setuptools ];
meta = { meta = {
description = "Python components for parsing HTML, XML and other textual content"; description = "Python components for parsing HTML, XML and other textual content";
longDescription = '' longDescription = ''
Python library that provides an integrated set of Python library that provides an integrated set of
components for parsing, generating, and processing HTML, XML or other components for parsing, generating, and processing HTML, XML or other
textual content for output generation on the web. textual content for output generation on the web.
''; '';
license = "BSD"; license = "BSD";
}; };
}; };
@ -156,7 +156,7 @@ rec {
buildInputs = [ pkgs.libxml2 pkgs.libxslt ]; buildInputs = [ pkgs.libxml2 pkgs.libxslt ];
meta = { meta = {
description = "Pythonic binding for the libxml2 and libxslt libraries"; description = "Pythonic binding for the libxml2 and libxslt libraries";
homepage = http://codespeak.net/lxml/index.html; homepage = http://codespeak.net/lxml/index.html;
license = "BSD"; license = "BSD";
@ -289,20 +289,20 @@ rec {
name = "psycopg2-2.0.13"; name = "psycopg2-2.0.13";
doCheck = false; doCheck = false;
src = fetchurl { src = fetchurl {
url = "http://initd.org/pub/software/psycopg/PSYCOPG-2-0/${name}.tar.gz"; url = "http://initd.org/pub/software/psycopg/PSYCOPG-2-0/${name}.tar.gz";
sha256 = "0arkaa1nbbd3pyn4l1bc75wi7nff3vxxh4s8sj5al5hv20p64pm1"; sha256 = "0arkaa1nbbd3pyn4l1bc75wi7nff3vxxh4s8sj5al5hv20p64pm1";
}; };
propagatedBuildInputs = [ pkgs.postgresql ]; propagatedBuildInputs = [ pkgs.postgresql ];
meta = { meta = {
description = "PostgreSQL database adapter for the Python programming language"; description = "PostgreSQL database adapter for the Python programming language";
license = "GPLv2/ZPL"; license = "GPLv2/ZPL";
}; };
}; };
pycryptopp = buildPythonPackage (rec { pycryptopp = buildPythonPackage (rec {
name = "pycryptopp-0.5.15"; name = "pycryptopp-0.5.15";
@ -477,21 +477,21 @@ rec {
trac = buildPythonPackage { trac = buildPythonPackage {
name = "trac-0.11.5"; name = "trac-0.11.5";
src = fetchurl { src = fetchurl {
url = http://ftp.edgewall.com/pub/trac/Trac-0.11.5.tar.gz; url = http://ftp.edgewall.com/pub/trac/Trac-0.11.5.tar.gz;
sha256 = "cc3362ecc533abc1755dd78e2d096d1413bc975abc3185318f4821458cd6a8ac"; sha256 = "cc3362ecc533abc1755dd78e2d096d1413bc975abc3185318f4821458cd6a8ac";
}; };
doCheck = false; doCheck = false;
PYTHON_EGG_CACHE = "`pwd`/.egg-cache"; PYTHON_EGG_CACHE = "`pwd`/.egg-cache";
propagatedBuildInputs = [ genshi pkgs.setuptools ]; propagatedBuildInputs = [ genshi pkgs.setuptools ];
meta = { meta = {
description = "Enhanced wiki and issue tracking system for software development projects"; description = "Enhanced wiki and issue tracking system for software development projects";
license = "BSD"; license = "BSD";
}; };
}; };