From f194f36f10804fcf3f7456bbf13e637d30e4633f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 21 Sep 2025 10:11:52 +0200 Subject: [PATCH] python313Packages.django-allauth: 65.10.0 -> 65.11.2 Changelog: https://codeberg.org/allauth/django-allauth/src/tag/65.11.2/ChangeLog.rst --- .../python-modules/django-allauth/default.nix | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/pkgs/development/python-modules/django-allauth/default.nix b/pkgs/development/python-modules/django-allauth/default.nix index 6250bb4808e8..671dc76e97d3 100644 --- a/pkgs/development/python-modules/django-allauth/default.nix +++ b/pkgs/development/python-modules/django-allauth/default.nix @@ -2,8 +2,6 @@ lib, buildPythonPackage, fetchFromGitea, - fetchpatch, - pythonOlder, python, # build-system @@ -43,27 +41,17 @@ buildPythonPackage rec { pname = "django-allauth"; - version = "65.10.0"; + version = "65.11.2"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitea { domain = "codeberg.org"; owner = "allauth"; repo = "django-allauth"; tag = version; - hash = "sha256-pwWrdWk3bARM4dKbEnUWXuyjw/rTcOjk3YXowDa+Hm8="; + hash = "sha256-JqG4fAm5aOUbySQpgLi1NiSvip1/ndVGP6JCe8QmsRs="; }; - patches = [ - (fetchpatch { - name = "dj-rest-auth-compat.patch"; - url = "https://github.com/pennersr/django-allauth/commit/d50a9b09bada6753b52e52571d0830d837dc08ee.patch"; - hash = "sha256-cFj9HEAlAITbRcR23ptzUYamoLmdtFEUVkDtv4+BBY0="; - }) - ]; - nativeBuildInputs = [ gettext ]; build-system = [ @@ -125,7 +113,7 @@ buildPythonPackage rec { meta = { description = "Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication"; - changelog = "https://codeberg.org/allauth/django-allauth/src/tag/${version}/ChangeLog.rst"; + changelog = "https://codeberg.org/allauth/django-allauth/src/tag/${src.tag}/ChangeLog.rst"; downloadPage = "https://codeberg.org/allauth/django-allauth"; homepage = "https://allauth.org"; license = lib.licenses.mit;