2017-04-07 16:06:00 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchurl, substituteAll,
|
|
|
|
pythonOlder,
|
2017-10-09 17:21:41 +01:00
|
|
|
geos, gdal, pytz,
|
|
|
|
withGdal ? false
|
2017-04-07 16:06:00 +01:00
|
|
|
}:
|
2017-10-09 17:14:15 +01:00
|
|
|
|
2017-04-07 16:06:00 +01:00
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "Django";
|
2018-08-21 13:58:55 +01:00
|
|
|
version = "1.11.15";
|
2017-05-27 10:25:35 +01:00
|
|
|
|
2017-04-07 16:06:00 +01:00
|
|
|
disabled = pythonOlder "2.7";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-04-17 09:42:07 +01:00
|
|
|
url = "http://www.djangoproject.com/m/releases/1.11/${pname}-${version}.tar.gz";
|
2018-08-21 13:58:55 +01:00
|
|
|
sha256 = "0h2sl02x2mxr3rl3dy750pzm5kvmx77116fys8rrgw164kc3b0mi";
|
2017-04-07 16:06:00 +01:00
|
|
|
};
|
|
|
|
|
2017-10-09 17:21:41 +01:00
|
|
|
patches = stdenv.lib.optionals withGdal [
|
2017-04-07 16:06:00 +01:00
|
|
|
(substituteAll {
|
|
|
|
src = ./1.10-gis-libs.template.patch;
|
|
|
|
geos = geos;
|
|
|
|
gdal = gdal;
|
2017-10-09 17:14:15 +01:00
|
|
|
extension = stdenv.hostPlatform.extensions.sharedLibrary;
|
2017-04-07 16:06:00 +01:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
# patch only $out/bin to avoid problems with starter templates (see #3134)
|
|
|
|
postFixup = ''
|
|
|
|
wrapPythonProgramsIn $out/bin "$out $pythonPath"
|
|
|
|
'';
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pytz ];
|
|
|
|
|
|
|
|
# too complicated to setup
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A high-level Python Web framework";
|
|
|
|
homepage = https://www.djangoproject.com/;
|
|
|
|
};
|
|
|
|
}
|