pythonPackages.django_raster: init at 0.2

This commit is contained in:
Lancelot SIX 2016-08-01 21:20:03 +02:00
parent abc85a9601
commit 20a94d9b40
No known key found for this signature in database
GPG Key ID: 02E1542BA66FB047
1 changed files with 19 additions and 0 deletions

View File

@ -9264,6 +9264,25 @@ in modules // {
};
};
django_raster = buildPythonPackage rec {
name = "djongoraster-${version}";
version = "0.2";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/09/3d/5b9b491186579825ef6e81d60c8ddaf86d8c98d928753a329980bf48b050/django-raster-0.2.tar.gz";
sha256 = "1zdcxzj43qrv7cl6q9nb2dkfnsyn74dzf2igpnd6nbbfdnkif9bm";
};
propagatedBuildInputs = with self ; [ numpy django_colorful pillow psycopg2
pyparsing django celery ];
meta = {
description = "Basic raster data integration for Django";
homepage = https://github.com/geodesign/django-raster;
license = licenses.mit;
};
};
django_redis = buildPythonPackage rec {
name = "django-redis-${version}";
version = "4.2.0";