nixpkgs-suyu/pkgs/development/python-modules/django/2_0.nix

45 lines
1 KiB
Nix
Raw Normal View History

2017-12-19 16:54:51 +01:00
{ stdenv, buildPythonPackage, fetchPypi, substituteAll,
isPy3k,
geos, gdal, pytz,
withGdal ? false
}:
buildPythonPackage rec {
pname = "Django";
name = "${pname}-${version}";
2018-04-04 20:06:49 +02:00
version = "2.0.4";
2017-12-19 16:54:51 +01:00
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
2018-04-04 20:06:49 +02:00
sha256 = "d81a1652963c81488e709729a80b510394050e312f386037f26b54912a3a10d0";
2017-12-19 16:54:51 +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 ];
};
}