depot/third_party/nixpkgs/pkgs/development/python-modules/django-leaflet/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

42 lines
1.1 KiB
Nix

{
pkgs,
buildPythonPackage,
django,
fetchPypi,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "django-leaflet";
version = "0.30.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "django_leaflet";
inherit version;
hash = "sha256-jsG2RcUe0Zob9GAZVKSIr8iPPubqqsh679uhUioNR0Y=";
};
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 = with maintainers; [ ];
};
}