Unverified Commit 20311074 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.django-allauth: 65.10.0 -> 65.11.2 (#444911)

parents 8e12d748 f194f36f
Loading
Loading
Loading
Loading
+3 −15
Original line number Diff line number Diff line
@@ -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;