From a946ccd8c94831cdbba9575bf2bd0bd8159b1550 Mon Sep 17 00:00:00 2001 From: Victor Nawothnig Date: Sun, 13 Oct 2024 09:05:49 +0200 Subject: [PATCH] django-auth-ldap: add darwin to platforms --- pkgs/development/python-modules/django-auth-ldap/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/django-auth-ldap/default.nix b/pkgs/development/python-modules/django-auth-ldap/default.nix index 0abd5d344e41..2e688abdfb07 100644 --- a/pkgs/development/python-modules/django-auth-ldap/default.nix +++ b/pkgs/development/python-modules/django-auth-ldap/default.nix @@ -52,6 +52,6 @@ buildPythonPackage rec { homepage = "https://github.com/django-auth-ldap/django-auth-ldap"; license = licenses.bsd2; maintainers = with maintainers; [ mmai ]; - platforms = platforms.linux; + platforms = platforms.linux ++ platforms.darwin; }; }