fix nevow url and uncomment again

This commit is contained in:
Florian Friesdorf 2012-12-03 06:54:13 +01:00
parent 1adc9b1b1f
commit e517d8791f

View File

@ -1374,47 +1374,46 @@ let pythonPackages = python.modules // rec {
}; };
# 404 Error nevow = buildPythonPackage (rec {
# nevow = buildPythonPackage (rec { name = "nevow-${version}";
# name = "nevow-${version}"; version = "0.10.0";
# version = "0.10.0";
# src = fetchurl {
# src = fetchurl { url = "http://pypi.python.org/packages/source/N/Nevow/Nevow-${version}.tar.gz";
# url = "http://divmod.org/trac/attachment/wiki/SoftwareReleases/Nevow-${version}.tar.gz?format=raw"; sha256 = "90631f68f626c8934984908d3df15e7c198939d36be7ead1305479dfc67ff6d0";
# sha256 = "90631f68f626c8934984908d3df15e7c198939d36be7ead1305479dfc67ff6d0"; name = "${name}.tar.gz";
# name = "${name}.tar.gz"; };
# };
# propagatedBuildInputs = [ twisted ];
# propagatedBuildInputs = [ twisted ];
# postInstall = "twistd --help > /dev/null";
# postInstall = "twistd --help > /dev/null";
# meta = {
# meta = { description = "Nevow, a web application construction kit for Python";
# description = "Nevow, a web application construction kit for Python";
# longDescription = ''
# longDescription = '' Nevow - Pronounced as the French "nouveau", or "noo-voh", Nevow
# Nevow - Pronounced as the French "nouveau", or "noo-voh", Nevow is a web application construction kit written in Python. It is
# is a web application construction kit written in Python. It is designed to allow the programmer to express as much of the view
# designed to allow the programmer to express as much of the view logic as desired in Python, and includes a pure Python XML
# logic as desired in Python, and includes a pure Python XML expression syntax named stan to facilitate this. However it
# expression syntax named stan to facilitate this. However it also provides rich support for designer-edited templates, using
# also provides rich support for designer-edited templates, using a very small XML attribute language to provide bi-directional
# a very small XML attribute language to provide bi-directional template manipulation capability.
# template manipulation capability.
# Nevow also includes formless, a declarative syntax for
# Nevow also includes formless, a declarative syntax for specifying the types of method parameters and exposing these
# specifying the types of method parameters and exposing these methods to the web. Forms can be rendered automatically, and
# methods to the web. Forms can be rendered automatically, and form posts will be validated and input coerced, rendering error
# form posts will be validated and input coerced, rendering error pages if appropriate. Once a form post has validated
# pages if appropriate. Once a form post has validated successfully, the method will be called with the coerced values.
# successfully, the method will be called with the coerced values. '';
# '';
# homepage = http://divmod.org/trac/wiki/DivmodNevow;
# homepage = http://divmod.org/trac/wiki/DivmodNevow;
# license = "BSD-style";
# license = "BSD-style"; };
# }; });
# });
nose = buildPythonPackage rec { nose = buildPythonPackage rec {
name = "nose-1.0.0"; name = "nose-1.0.0";