Weijia Wang 7610f15ab8
python3Packages.django-leaflet: drop support for python 3.7-3.8
Co-authored-by: Nick Cao <nickcao@nichi.co>
2025-06-27 23:37:40 +02:00

43 lines
1.0 KiB
Nix

{
pkgs,
buildPythonPackage,
django,
fetchPypi,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "django-leaflet";
version = "0.32.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
pname = "django_leaflet";
inherit version;
hash = "sha256-ATzLBu4IBxyuyYpl3/1oqzaU2vznLK/zTz1481VoriU=";
};
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 = 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 = [ ];
};
}