mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Update Django to version 1.4.
svn path=/nixpkgs/trunk/; revision=34441
This commit is contained in:
parent
5375a3edf6
commit
499161282e
1 changed files with 4 additions and 3 deletions
|
@ -461,11 +461,12 @@ let pythonPackages = python.modules // rec {
|
|||
|
||||
|
||||
django = buildPythonPackage rec {
|
||||
name = "Django-1.3.1";
|
||||
name = "Django-${version}";
|
||||
version = "1.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.djangoproject.com/m/releases/1.3/${name}.tar.gz";
|
||||
sha256 = "0sqmvqy3y5h76pa3zjcnyiy5x01bzzy03afdp2qdwqx0x321i4dg";
|
||||
url = "http://www.djangoproject.com/m/releases/${version}/${name}.tar.gz";
|
||||
sha256 = "1sc8ajixaqfylb7jmmhn38hgbnqipylh1sqmpicx7rqhxbxvm5n0";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
|
Loading…
Reference in a new issue