summary refs log tree commit diff
path: root/pkgs/development/python-modules/django-allauth/default.nix
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-10-10 10:08:05 +0000
committerAlyssa Ross <hi@alyssa.is>2023-10-11 20:20:08 +0000
commitd72bc8a58859f3261085ae2c1e489e95100b4746 (patch)
treeb14e6a1b62a50e4ecaa30bca152efd2cecd80062 /pkgs/development/python-modules/django-allauth/default.nix
parent55ebc46e4b962ad2ec56f6be3a306575dddd40a9 (diff)
downloadnixpkgs-d72bc8a58859f3261085ae2c1e489e95100b4746.tar
nixpkgs-d72bc8a58859f3261085ae2c1e489e95100b4746.tar.gz
nixpkgs-d72bc8a58859f3261085ae2c1e489e95100b4746.tar.bz2
nixpkgs-d72bc8a58859f3261085ae2c1e489e95100b4746.tar.lz
nixpkgs-d72bc8a58859f3261085ae2c1e489e95100b4746.tar.xz
nixpkgs-d72bc8a58859f3261085ae2c1e489e95100b4746.tar.zst
nixpkgs-d72bc8a58859f3261085ae2c1e489e95100b4746.zip
python3.pkgs.django-allauth: 0.55.2 -> 0.57.0
Diffstat (limited to 'pkgs/development/python-modules/django-allauth/default.nix')
-rw-r--r--pkgs/development/python-modules/django-allauth/default.nix11
1 files changed, 3 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/django-allauth/default.nix b/pkgs/development/python-modules/django-allauth/default.nix
index 738cb1c58d3..49864b0b9bb 100644
--- a/pkgs/development/python-modules/django-allauth/default.nix
+++ b/pkgs/development/python-modules/django-allauth/default.nix
@@ -28,7 +28,7 @@
 
 buildPythonPackage rec {
   pname = "django-allauth";
-  version = "0.55.2";
+  version = "0.57.0";
   format = "pyproject";
 
   disabled = pythonOlder "3.7";
@@ -37,7 +37,7 @@ buildPythonPackage rec {
     owner = "pennersr";
     repo = pname;
     rev = version;
-    hash = "sha256-i0thQymrEDkx2Yt9kM10j4LxL7yChHkG9vsS0508EQA=";
+    hash = "sha256-zhKqvm43rw28UKNFdfJ2C1dIeZfPqmchb1rJykm1lx4=";
   };
 
   nativeBuildInputs = [
@@ -73,11 +73,6 @@ buildPythonPackage rec {
   ]
   ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
 
-  disabledTestPaths = [
-    # tests are out of date
-    "allauth/socialaccount/providers/cern/tests.py"
-  ];
-
   passthru.tests = {
     inherit dj-rest-auth;
   };
@@ -85,7 +80,7 @@ buildPythonPackage rec {
   meta = with lib; {
     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";
+    downloadPage = "https://github.com/pennersr/django-allauth";
     homepage = "https://www.intenct.nl/projects/django-allauth";
     license = licenses.mit;
     maintainers = with maintainers; [ derdennisop ];