tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3.pkgs.django-allauth: 0.55.2 -> 0.57.0
Alyssa Ross
2 years ago
d72bc8a5
55ebc46e
+3
-8
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
django-allauth
default.nix
+3
-8
pkgs/development/python-modules/django-allauth/default.nix
reviewed
···
28
28
29
29
buildPythonPackage rec {
30
30
pname = "django-allauth";
31
31
-
version = "0.55.2";
31
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
40
-
hash = "sha256-i0thQymrEDkx2Yt9kM10j4LxL7yChHkG9vsS0508EQA=";
40
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
76
-
disabledTestPaths = [
77
77
-
# tests are out of date
78
78
-
"allauth/socialaccount/providers/cern/tests.py"
79
79
-
];
80
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
88
-
downloadPage = " https://github.com/pennersr/django-allauth";
83
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 ];