summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2017-07-27 11:21:48 +0200
committerLancelot SIX <lsix@lancelotsix.com>2017-07-27 11:27:13 +0200
commit128430cd3ea900111c1ad4af6b3152aabcb3e038 (patch)
treee0cee9a4fd42845566482161dfbb13130be6e073 /pkgs
parenta905b7cd0c2dc0714195a50bf176cd8e4593502d (diff)
downloadnixlib-128430cd3ea900111c1ad4af6b3152aabcb3e038.tar
nixlib-128430cd3ea900111c1ad4af6b3152aabcb3e038.tar.gz
nixlib-128430cd3ea900111c1ad4af6b3152aabcb3e038.tar.bz2
nixlib-128430cd3ea900111c1ad4af6b3152aabcb3e038.tar.lz
nixlib-128430cd3ea900111c1ad4af6b3152aabcb3e038.tar.xz
nixlib-128430cd3ea900111c1ad4af6b3152aabcb3e038.tar.zst
nixlib-128430cd3ea900111c1ad4af6b3152aabcb3e038.zip
pythonPackages.django_1_10: drop
Drop django_1_10 ahead of `release-17.09`[1] branch off. Django-1.10
will not be maintained for the entire lifetime of 17.09 so only the 1.8
and 1.11 branches are maintained (both are LTS versions[2]).

[1] https://groups.google.com/forum/#!topic/nix-devel/vILGXXbeCPg
[2] https://www.djangoproject.com/download/
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/django/1_10.nix36
-rw-r--r--pkgs/top-level/python-packages.nix7
2 files changed, 0 insertions, 43 deletions
diff --git a/pkgs/development/python-modules/django/1_10.nix b/pkgs/development/python-modules/django/1_10.nix
deleted file mode 100644
index 52b62e8d8b8b..000000000000
--- a/pkgs/development/python-modules/django/1_10.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ stdenv, buildPythonPackage, fetchurl, substituteAll,
-  pythonOlder,
-  geos, gdal
-}:
-buildPythonPackage rec {
-  pname = "Django";
-  name = "${pname}-${version}";
-  version = "1.10.7";
-  disabled = pythonOlder "2.7";
-
-  src = fetchurl {
-    url = "http://www.djangoproject.com/m/releases/1.10/${name}.tar.gz";
-    sha256 = "1f5hnn2dzfr5szk4yc47bs4kk2nmrayjcvgpqi2s4l13pjfpfgar";
-  };
-
-  patches = [
-    (substituteAll {
-      src = ./1.10-gis-libs.template.patch;
-      geos = geos;
-      gdal = gdal;
-    })
-  ];
-
-  # patch only $out/bin to avoid problems with starter templates (see #3134)
-  postFixup = ''
-    wrapPythonProgramsIn $out/bin "$out $pythonPath"
-  '';
-
-  # too complicated to setup
-  doCheck = false;
-
-  meta = {
-    description = "A high-level Python Web framework";
-    homepage = https://www.djangoproject.com/;
-  };
-}
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 5a817b752925..8f0d061ed1c6 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -9343,13 +9343,6 @@ in {
     gdal = self.gdal;
   };
 
-  # TODO: Django 1.10 will be maintained until the end of the year. Therefore,
-  # it will be dropped before 17.09.
-  # https://github.com/NixOS/nixpkgs/issues/25375#issuecomment-298522597
-  django_1_10 = callPackage ../development/python-modules/django/1_10.nix {
-    gdal = self.gdal;
-  };
-
   django_1_8 = buildPythonPackage rec {
     name = "Django-${version}";
     version = "1.8.18";