From 98fb18af3ed0a0315a28ed017e2e88146e28453c Mon Sep 17 00:00:00 2001 From: James Cook Date: Sat, 11 Jul 2015 21:17:59 -0700 Subject: [PATCH] python-2.6: mark broken because being insecure for years --- pkgs/development/interpreters/python/2.6/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/python/2.6/default.nix b/pkgs/development/interpreters/python/2.6/default.nix index 29e3ecd20b1..28f53f8ca95 100644 --- a/pkgs/development/interpreters/python/2.6/default.nix +++ b/pkgs/development/interpreters/python/2.6/default.nix @@ -9,7 +9,6 @@ let majorVersion = "2.6"; version = "${majorVersion}.9"; - # python 2.6 will receive security fixes until Oct 2013 src = fetchurl { url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"; sha256 = "0hbfs2691b60c7arbysbzr0w9528d5pl8a4x7mq5psh6a2cvprya"; @@ -118,6 +117,10 @@ let license = stdenv.lib.licenses.psfl; platforms = stdenv.lib.platforms.all; maintainers = with stdenv.lib.maintainers; [ simons chaoflow iElectric ]; + # If you want to use Python 2.6, remove "broken = true;" at your own + # risk. Python 2.6 has known security vulnerabilities is not receiving + # security updates as of October 2013. + broken = true; }; };