Skip to content

Commit

Permalink
pythonPackages.django-raster: 0.3 -> 0.3.1
Browse files Browse the repository at this point in the history
(cherry picked from commit 9041f0d)
  • Loading branch information
lsix committed Mar 15, 2017
1 parent 02187c0 commit 3e88ef2
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 18 deletions.
25 changes: 25 additions & 0 deletions pkgs/development/python-modules/django-raster/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ stdenv, buildPythonPackage, fetchurl,
numpy, django_colorful, pillow, psycopg2,
pyparsing, django, celery
}:
buildPythonPackage rec {
name = "django-raster-${version}";
version = "0.3.1";

src = fetchurl {
url = "mirror://pypi/d/django-raster/${name}.tar.gz";
sha256 = "1hsrkvybak1adn9d9qdw7hx3rcxsbzas4ixwll6vrjkrizgfihk3";
};

# Tests require a postgresql + postgis server
doCheck = false;

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

meta = with stdenv.lib; {
description = "Basic raster data integration for Django";
homepage = https://github.com/geodesign/django-raster;
license = licenses.mit;
};
}
19 changes: 1 addition & 18 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10643,24 +10643,7 @@ in {
};
};

django_raster = buildPythonPackage rec {
name = "django-raster-${version}";
version = "0.3";

src = pkgs.fetchurl {
url = "mirror://pypi/d/django-raster/${name}.tar.gz";
sha256 = "0vn11y07wag7yvjzrk7m99xs3cqyaaaklwcsik9zbvw0kwp2khni";
};

propagatedBuildInputs = with self ; [ numpy django_colorful pillow psycopg2
pyparsing django celery_3 ];

meta = {
description = "Basic raster data integration for Django";
homepage = https://github.com/geodesign/django-raster;
license = licenses.mit;
};
};
django-raster = callPackage ../development/python-modules/django-raster { };

django_redis = buildPythonPackage rec {
name = "django-redis-${version}";
Expand Down

0 comments on commit 3e88ef2

Please sign in to comment.