python313Packages.django-allauth: 65.10.0 -> 65.11.2

Changelog: https://codeberg.org/allauth/django-allauth/src/tag/65.11.2/ChangeLog.rst

Changed files
+3 -15
pkgs
development
python-modules
django-allauth
+3 -15
pkgs/development/python-modules/django-allauth/default.nix
···
lib,
buildPythonPackage,
fetchFromGitea,
-
fetchpatch,
-
pythonOlder,
python,
# build-system
···
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 ];
···
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;