Files
Fabian Affolter e5aedf1290 python3Packages.django-leaflet: 0.33.0 -> 0.34.0
https://github.com/makinacorpus/django-leaflet/blob/0.34.0/CHANGES

This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:20 +02:00

40 lines
1010 B
Nix

{
lib,
buildPythonPackage,
django,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "django-leaflet";
version = "0.34.0";
pyproject = true;
src = fetchPypi {
pname = "django_leaflet";
inherit version;
hash = "sha256-gzbnKnu/8LNjBUmC8CrB16O8srL6S8oyYBTd3q63xRU=";
};
build-system = [ setuptools ];
dependencies = [ django ];
# The tests seem to be impure.
# They are throwing a error about unset configs:
# > django.core.exceptions.ImproperlyConfigured: Requested setting LEAFLET_CONFIG, but settings are not configured.
doCheck = false;
# This dosn't work either because of the same exception as above
# pythonImportsCheck = [ "leaflet" ];
meta = {
description = "Allows you to use Leaflet in your Django projects";
homepage = "https://github.com/makinacorpus/django-leaflet";
changelog = "https://github.com/makinacorpus/django-leaflet/blob/${version}/CHANGES";
license = lib.licenses.lgpl3Only;
maintainers = [ ];
};
}