2018-08-16 16:48:30 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, substituteAll,
|
|
|
|
isPy3k,
|
|
|
|
geos, gdal, pytz,
|
|
|
|
withGdal ? false
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Django";
|
2018-12-14 21:27:31 +00:00
|
|
|
version = "2.1.4";
|
2018-08-16 16:48:30 +01:00
|
|
|
|
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-12-14 21:27:31 +00:00
|
|
|
sha256 = "1mxbrqdzim3xcy18dmd08xh2am0q7whbf0nf6bmnrl43802m3386";
|
2018-08-16 16:48:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = stdenv.lib.optionals withGdal [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./1.10-gis-libs.template.patch;
|
|
|
|
geos = geos;
|
|
|
|
gdal = gdal;
|
|
|
|
extension = stdenv.hostPlatform.extensions.sharedLibrary;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
# 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 = with stdenv.lib; {
|
|
|
|
description = "A high-level Python Web framework";
|
|
|
|
homepage = https://www.djangoproject.com/;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ georgewhewell ];
|
|
|
|
};
|
|
|
|
}
|