1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.django_1_9: 1.9.9 -> 1.9.10

This is a security release.

It fixes CVE-2016-7401.

See https://www.djangoproject.com/weblog/2016/sep/26/security-releases/
for upstream announcement.
This commit is contained in:
Lancelot SIX 2016-09-29 11:18:48 +02:00 committed by Franz Pletz
parent eb6a1c9238
commit dd553b6ef5

View file

@ -9407,12 +9407,12 @@ in modules // {
django_1_9 = buildPythonPackage rec {
name = "Django-${version}";
version = "1.9.9";
version = "1.9.10";
disabled = pythonOlder "2.7";
src = pkgs.fetchurl {
url = "http://www.djangoproject.com/m/releases/1.9/${name}.tar.gz";
sha256 = "136ypwacj4av6xqmbfp6lhlr0171ws2knv74h0r59ssaaffznh73";
sha256 = "007w2pshbk1s6gfgp8717fwz01l8mcmd2lkxdgqqgd11bag7qfjv";
};
# patch only $out/bin to avoid problems with starter templates (see #3134)