Files
nixpkgs/pkgs/development/python-modules/django-raster/default.nix
T
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

30 lines
799 B
Nix

{ lib, buildPythonPackage, fetchPypi, isPy3k,
numpy, django-colorful, pillow, psycopg2,
pyparsing, django, celery, boto3, importlib-metadata
}:
buildPythonPackage rec {
version = "0.8.1";
format = "setuptools";
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;
};
}