pythonPackages.webob: 2.0.3 -> 2.0.11

This commit is contained in:
Domen Kožar 2013-12-29 14:22:29 +01:00
parent 8da218c34e
commit 8f14618e45

View File

@ -7025,26 +7025,25 @@ pythonPackages = modules // import ./python-packages-generated.nix {
webtest = buildPythonPackage rec { webtest = buildPythonPackage rec {
version = "2.0.3"; version = "2.0.11";
name = "webtest-${version}"; name = "webtest-${version}";
src = fetchurl { src = fetchurl {
url = "http://pypi.python.org/packages/source/W/WebTest/WebTest-${version}.zip"; url = "http://pypi.python.org/packages/source/W/WebTest/WebTest-${version}.zip";
md5 = "a1266d4db421963fd3deb172c6689e4b"; md5 = "e51da21da8815cef07f543d8688effea";
}; };
buildInputs = [ pkgs.unzip ] ++ optionals isPy26 [ pythonPackages.ordereddict ];
# XXX: skipping two tests fails in python2.6 # XXX: skipping two tests fails in python2.6
doCheck = ! isPy26; doCheck = ! isPy26;
buildInputs = [ pkgs.unzip ] ++ optionals isPy26 [ pythonPackages.ordereddict unittest2 ];
propagatedBuildInputs = [ propagatedBuildInputs = [
nose nose
webob webob
six six
beautifulsoup4 beautifulsoup4
waitress waitress
unittest2
mock mock
pyquery pyquery
wsgiproxy2 wsgiproxy2
@ -7054,7 +7053,7 @@ pythonPackages = modules // import ./python-packages-generated.nix {
meta = { meta = {
description = "Helper to test WSGI applications"; description = "Helper to test WSGI applications";
homepage = http://pythonpaste.org/webtest/; homepage = http://webob.readthedocs.org/en/latest/;
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.all;
}; };
}; };