Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-django/versions
		
			
				
	
	
		
			44 lines
		
	
	
		
			1006 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1006 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ stdenv, buildPythonPackage, fetchPypi, substituteAll,
 | 
						|
  isPy3k,
 | 
						|
  geos, gdal, pytz,
 | 
						|
  withGdal ? false
 | 
						|
}:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "Django";
 | 
						|
  version = "2.1.3";
 | 
						|
 | 
						|
  disabled = !isPy3k;
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    sha256 = "05k990b9zbj0nfkdcn13f5hg7ppfx9vffz5s0m66imd3mmlb5yhz";
 | 
						|
  };
 | 
						|
 | 
						|
  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 ];
 | 
						|
  };
 | 
						|
}
 |