10 buildPythonPackage rec {
11 pname = "social-auth-app-django";
13 format = "setuptools";
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
18 owner = "python-social-auth";
19 repo = "social-app-django";
20 rev = "refs/tags/${version}";
21 hash = "sha256-CZF1DA4UUnmGfdmWlBJ0zJIYx1E03a7Z7Y6WJNFU68M=";
24 propagatedBuildInputs = [
28 pythonImportsCheck = [
37 ${python.interpreter} -m django test --settings="tests.settings"
41 description = "Module for social authentication/registration mechanism";
42 homepage = "https://github.com/python-social-auth/social-app-django";
43 changelog = "https://github.com/python-social-auth/social-app-django/blob/${version}/CHANGELOG.md";
44 license = licenses.bsd3;
45 maintainers = with maintainers; [ n0emis ];