python311Packages.django-allauth: 0.54.0 -> 0.55.2

https://github.com/pennersr/django-allauth/blob/0.55.2/ChangeLog.rst
This commit is contained in:
Martin Weinelt
2023-09-27 15:34:48 +02:00
parent 57a5cbaae9
commit 37ead196e0
@@ -1,18 +1,35 @@
{ lib
, buildPythonPackage
, django
, fetchFromGitHub
, python3-openid
, pythonOlder
# build-system
, setuptools
# dependencies
, django
, python3-openid
, requests
, requests-oauthlib
, pyjwt
# optional-dependencies
, python3-saml
, qrcode
# tests
, pillow
, pytestCheckHook
, pytest-django
# passthru tests
, dj-rest-auth
}:
buildPythonPackage rec {
pname = "django-allauth";
version = "0.54.0";
format = "setuptools";
version = "0.55.2";
format = "pyproject";
disabled = pythonOlder "3.7";
@@ -20,13 +37,12 @@ buildPythonPackage rec {
owner = "pennersr";
repo = pname;
rev = version;
hash = "sha256-0yJsHJhYeiCHQg/QzFD/metb97rcUJ+LYlsl7fGYmuM=";
hash = "sha256-i0thQymrEDkx2Yt9kM10j4LxL7yChHkG9vsS0508EQA=";
};
postPatch = ''
chmod +x manage.py
patchShebangs manage.py
'';
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
django
@@ -37,19 +53,39 @@ buildPythonPackage rec {
]
++ pyjwt.optional-dependencies.crypto;
checkPhase = ''
# test is out of date
rm allauth/socialaccount/providers/cern/tests.py
./manage.py test
'';
passthru.optional-dependencies = {
saml = [
python3-saml
];
mfa = [
qrcode
];
};
pythonImportsCheck = [
"allauth"
];
nativeCheckInputs = [
pillow
pytestCheckHook
pytest-django
]
++ 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;
};
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";
homepage = "https://www.intenct.nl/projects/django-allauth";
license = licenses.mit;
maintainers = with maintainers; [ derdennisop ];