nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.django-allauth: backport patch for dj-rest-auth compat

+10
+1
pkgs/by-name/pa/paperless-ngx/package.nix
··· 170 170 tag = version; 171 171 hash = "sha256-1HmEJ5E4Vp/CoyzUegqQXpzKUuz3dLx2EEv7dk8fq8w="; 172 172 }; 173 + patches = [ ]; 173 174 } 174 175 )) 175 176 django-auditlog
+9
pkgs/development/python-modules/django-allauth/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitea, 5 + fetchpatch, 5 6 pythonOlder, 6 7 python, 7 8 ··· 55 54 tag = version; 56 55 hash = "sha256-pwWrdWk3bARM4dKbEnUWXuyjw/rTcOjk3YXowDa+Hm8="; 57 56 }; 57 + 58 + patches = [ 59 + (fetchpatch { 60 + name = "dj-rest-auth-compat.patch"; 61 + url = "https://github.com/pennersr/django-allauth/commit/d50a9b09bada6753b52e52571d0830d837dc08ee.patch"; 62 + hash = "sha256-cFj9HEAlAITbRcR23ptzUYamoLmdtFEUVkDtv4+BBY0="; 63 + }) 64 + ]; 58 65 59 66 nativeBuildInputs = [ gettext ]; 60 67