Skip to content

Commit

Permalink
Merge pull request #32852 from georgewhewell/django-2_0
Browse files Browse the repository at this point in the history
django: add 2.0 release
  • Loading branch information
FRidh committed Dec 30, 2017
2 parents 9ee22e2 + f85da5a commit 9d4de1e
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
44 changes: 44 additions & 0 deletions pkgs/development/python-modules/django/2_0.nix
@@ -0,0 +1,44 @@
{ stdenv, buildPythonPackage, fetchPypi, substituteAll,
isPy3k,
geos, gdal, pytz,
withGdal ? false
}:

buildPythonPackage rec {
pname = "Django";
name = "${pname}-${version}";
version = "2.0";

disabled = !isPy3k;

src = fetchPypi {
inherit pname version;
sha256 = "0iqzqd1jrc4gg5qygxxzbddc8xzk85j0gikk5g9wpy3z98fqa54n";
};

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 ];
};
}
4 changes: 4 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -7472,6 +7472,10 @@ in {
gdal = self.gdal;
};

django_2_0 = callPackage ../development/python-modules/django/2_0.nix {
gdal = self.gdal;
};

django_1_8 = buildPythonPackage rec {
name = "Django-${version}";
version = "1.8.18";
Expand Down

0 comments on commit 9d4de1e

Please sign in to comment.