setuptools: Fix download link (the old one was returning 404)

This commit is contained in:
Ricardo M. Correia 2013-05-31 01:09:44 +00:00
parent f54c4c99e3
commit 96b01e999f

View File

@ -1,12 +1,13 @@
{ stdenv, fetchurl, python, wrapPython }:
stdenv.mkDerivation rec {
name = "python-setuptools-" + version;
shortName = "setuptools-${version}";
name = "python-${shortName}";
version = "0.6c11";
src = fetchurl {
url = "http://pypi.python.org/packages/source/s/setuptools/${name}.tar.gz";
url = "http://pypi.python.org/packages/source/s/setuptools/${shortName}.tar.gz";
sha256 = "1lx1hwxkhipyh206bgl90ddnfcnb68bzcvyawczbf833fadyl3v3";
};