pythonPackages.django-raster: 0.3 -> 0.3.1
This commit is contained in:
parent
f3a4f31554
commit
9041f0d8d9
25
pkgs/development/python-modules/django-raster/default.nix
Normal file
25
pkgs/development/python-modules/django-raster/default.nix
Normal file
@ -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;
|
||||
};
|
||||
}
|
@ -10632,24 +10632,7 @@ in {
|
||||
|
||||
djangorestframework = callPackage ../development/python-modules/djangorestframework { };
|
||||
|
||||
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}";
|
||||
|
Loading…
Reference in New Issue
Block a user