about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-06-18 09:43:28 +0200
committerGitHub <noreply@github.com>2023-06-18 09:43:28 +0200
commit7d5ddf8b1d1215502bcc6b56fdd42f2351f19e3f (patch)
tree15d3494c49856851a908dd3223bff5d32d4285e0
parent9059ba30824b6e0c3a122c5721a977f082d937c1 (diff)
python3Packages.django-leaflet: add changelog to meta
-rw-r--r--pkgs/development/python-modules/django-leaflet/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/django-leaflet/default.nix b/pkgs/development/python-modules/django-leaflet/default.nix
index 59c56b2b0a509..7ea1ba4a58d9e 100644
--- a/pkgs/development/python-modules/django-leaflet/default.nix
+++ b/pkgs/development/python-modules/django-leaflet/default.nix
@@ -23,7 +23,7 @@ buildPythonPackage rec {
 
   # 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. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.
+  # > 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
@@ -32,6 +32,7 @@ buildPythonPackage rec {
   meta = with pkgs.lib; {
     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 = licenses.lgpl3Only;
     maintainers = with maintainers; [ janik ];
   };