My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/django-raster/default.nix

28 lines
774 B

{ lib, buildPythonPackage, fetchPypi, isPy3k,
numpy, django_colorful, pillow, psycopg2,
pyparsing, django, celery, boto3, importlib-metadata
}:
buildPythonPackage rec {
version = "0.8.1";
pname = "django-raster";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "213758fe96d74be502f69f2620f7666961a85caa0551d14573637315035a9745";
};
# Tests require a postgresql + postgis server
doCheck = false;
propagatedBuildInputs = [ numpy django_colorful pillow psycopg2
pyparsing django celery boto3 importlib-metadata ];
meta = with lib; {
description = "Basic raster data integration for Django";
homepage = "https://github.com/geodesign/django-raster";
license = licenses.mit;
};
}