python3Packages.django-allauth: 65.7.0 -> 65.9.0

This commit is contained in:
Jonas Heinrich
2025-07-08 10:20:12 +02:00
parent 7f1da3b0ae
commit 9f863f5c56
@@ -1,7 +1,7 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchFromGitea,
pythonOlder,
python,
@@ -40,16 +40,17 @@
buildPythonPackage rec {
pname = "django-allauth";
version = "65.7.0";
version = "65.9.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "pennersr";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "allauth";
repo = "django-allauth";
tag = version;
hash = "sha256-1HmEJ5E4Vp/CoyzUegqQXpzKUuz3dLx2EEv7dk8fq8w=";
hash = "sha256-gusA9TnsgSSnWBPwHsNYeESD9nX5DWh4HqMgcsoJRw0=";
};
nativeBuildInputs = [ gettext ];
@@ -101,10 +102,10 @@ buildPythonPackage rec {
passthru.tests = { inherit dj-rest-auth; };
meta = {
changelog = "https://github.com/pennersr/django-allauth/blob/${version}/ChangeLog.rst";
description = "Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication";
downloadPage = "https://github.com/pennersr/django-allauth";
homepage = "https://www.intenct.nl/projects/django-allauth";
changelog = "https://codeberg.org/allauth/django-allauth/src/tag/${version}/ChangeLog.rst";
downloadPage = "https://codeberg.org/allauth/django-allauth";
homepage = "https://allauth.org";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ derdennisop ];
};