11 buildPythonPackage rec {
12 pname = "social-auth-app-django";
14 format = "setuptools";
16 disabled = pythonOlder "3.8";
18 src = fetchFromGitHub {
19 owner = "python-social-auth";
20 repo = "social-app-django";
21 rev = "refs/tags/${version}";
22 hash = "sha256-W9boogixZ7X6qysfh2YEat+TOBy1VNreGr27y8hno+0=";
25 propagatedBuildInputs = [ social-auth-core ];
27 pythonImportsCheck = [ "social_django" ];
29 nativeCheckInputs = [ django ];
32 ${python.interpreter} -m django test --settings="tests.settings"
36 description = "Module for social authentication/registration mechanism";
37 homepage = "https://github.com/python-social-auth/social-app-django";
38 changelog = "https://github.com/python-social-auth/social-app-django/blob/${version}/CHANGELOG.md";
39 license = licenses.bsd3;
40 maintainers = with maintainers; [ n0emis ];