Files
nixpkgs/pkgs/development/python-modules/django-leaflet/default.nix
T
Martin Weinelt 2be745d0cc python3Packages.django-leaflet: 0.32.0 -> 0.33.0
https://github.com/makinacorpus/django-leaflet/blob/0.33.0/CHANGES

This commit was automatically generated using update-python-libraries.
2026-02-01 16:43:07 +01:00

40 lines
1010 B
Nix

{
lib,
buildPythonPackage,
django,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "django-leaflet";
version = "0.33.0";
pyproject = true;
src = fetchPypi {
pname = "django_leaflet";
inherit version;
hash = "sha256-tRxx5xee7ZlhSE39V7h70ezjsf977k37f01XAiBrLso=";
};
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 = [ ];
};
}