* Python decorator updated to 3.3.1. Turns out that pypi.python.org

doesn't contain old releases.  Doh...

svn path=/nixpkgs/trunk/; revision=27228
This commit is contained in:
Eelco Dolstra 2011-05-11 14:29:35 +00:00
parent 81e561ee2e
commit fa61d0130e

View File

@ -320,11 +320,11 @@ let pythonPackages = python.modules // rec {
decorator = buildPythonPackage rec {
name = "decorator-3.3.0";
name = "decorator-3.3.1";
src = fetchurl {
url = "http://pypi.python.org/packages/source/d/decorator/${name}.tar.gz";
md5 = "0d62c81d9db4923e88e6a94581807cf6";
md5 = "a8fc62acd705f487a71bc406e19e0cc6";
};
meta = {