mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
b2da714180
Fixes: CVE-2020-13254, CVE-2020-13596
39 lines
875 B
Nix
39 lines
875 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, substituteAll,
|
|
isPy3k,
|
|
geos, gdal, pytz, sqlparse,
|
|
withGdal ? false
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "Django";
|
|
version = "2.2.13";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "103db5gmny6bkq9jgr2m6gdfy1n29bj2v87184y1zgpdmkv71ww4";
|
|
};
|
|
|
|
patches = stdenv.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 stdenv.lib; {
|
|
description = "A high-level Python Web framework";
|
|
homepage = "https://www.djangoproject.com/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ georgewhewell lsix ];
|
|
};
|
|
}
|