6c7db95fea
https://docs.djangoproject.com/en/dev/releases/2.2.24/ https://www.djangoproject.com/weblog/2021/jun/02/security-releases/ Fixes: CVE-2021-33203, CVE-2021-33571
39 lines
866 B
Nix
39 lines
866 B
Nix
{ lib, stdenv, buildPythonPackage, fetchPypi, substituteAll,
|
|
isPy3k,
|
|
geos, gdal, pytz, sqlparse,
|
|
withGdal ? false
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "Django";
|
|
version = "2.2.24";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1dvx3x85lggm91x7mpvaf9nmpxyz7r97pbpnmr2k1qfy0c7gyf9k";
|
|
};
|
|
|
|
patches = lib.optional withGdal
|
|
(substituteAll {
|
|
src = ./1.10-gis-libs.template.patch;
|
|
geos = geos;
|
|
gdal = gdal;
|
|
extension = stdenv.hostPlatform.extensions.sharedLibrary;
|
|
})
|
|
;
|
|
|
|
propagatedBuildInputs = [ pytz sqlparse ];
|
|
|
|
# too complicated to setup
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "A high-level Python Web framework";
|
|
homepage = "https://www.djangoproject.com/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ georgewhewell lsix ];
|
|
};
|
|
}
|