Skip to content

Commit

Permalink
pythonPackages.django-raster: fix build (#46413)
Browse files Browse the repository at this point in the history
(cherry picked from commit dfcf07d)
  • Loading branch information
mbode authored and xeji committed Sep 9, 2018
1 parent 546fe71 commit 17456d8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pkgs/development/python-modules/django-raster/default.nix
@@ -1,11 +1,13 @@
{ stdenv, buildPythonPackage, fetchPypi,
{ stdenv, buildPythonPackage, fetchPypi, isPy3k,
numpy, django_colorful, pillow, psycopg2,
pyparsing, django, celery
pyparsing, django_2_1, celery, boto3
}:
buildPythonPackage rec {
version = "0.6";
pname = "django-raster";

disabled = !isPy3k;

src = fetchPypi {
inherit pname version;
sha256 = "9a0f8e71ebeeeb5380c6ca68e027e9de335f43bc15e89dd22e7a470c4eb7aeb8";
Expand All @@ -15,7 +17,7 @@ buildPythonPackage rec {
doCheck = false;

propagatedBuildInputs = [ numpy django_colorful pillow psycopg2
pyparsing django celery ];
pyparsing django_2_1 celery boto3 ];

meta = with stdenv.lib; {
description = "Basic raster data integration for Django";
Expand Down

0 comments on commit 17456d8

Please sign in to comment.