lol

python3.pkgs.django-allauth: 0.55.2 -> 0.57.0

+3 -8
+3 -8
pkgs/development/python-modules/django-allauth/default.nix
··· 28 28 29 29 buildPythonPackage rec { 30 30 pname = "django-allauth"; 31 - version = "0.55.2"; 31 + version = "0.57.0"; 32 32 format = "pyproject"; 33 33 34 34 disabled = pythonOlder "3.7"; ··· 37 37 owner = "pennersr"; 38 38 repo = pname; 39 39 rev = version; 40 - hash = "sha256-i0thQymrEDkx2Yt9kM10j4LxL7yChHkG9vsS0508EQA="; 40 + hash = "sha256-zhKqvm43rw28UKNFdfJ2C1dIeZfPqmchb1rJykm1lx4="; 41 41 }; 42 42 43 43 nativeBuildInputs = [ ··· 73 73 ] 74 74 ++ lib.flatten (builtins.attrValues passthru.optional-dependencies); 75 75 76 - disabledTestPaths = [ 77 - # tests are out of date 78 - "allauth/socialaccount/providers/cern/tests.py" 79 - ]; 80 - 81 76 passthru.tests = { 82 77 inherit dj-rest-auth; 83 78 }; ··· 85 80 meta = with lib; { 86 81 changelog = "https://github.com/pennersr/django-allauth/blob/${version}/ChangeLog.rst"; 87 82 description = "Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication"; 88 - downloadPage = " https://github.com/pennersr/django-allauth"; 83 + downloadPage = "https://github.com/pennersr/django-allauth"; 89 84 homepage = "https://www.intenct.nl/projects/django-allauth"; 90 85 license = licenses.mit; 91 86 maintainers = with maintainers; [ derdennisop ];