about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/social-auth-app-django/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/social-auth-app-django/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/social-auth-app-django/default.nix47
1 files changed, 47 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/social-auth-app-django/default.nix b/nixpkgs/pkgs/development/python-modules/social-auth-app-django/default.nix
new file mode 100644
index 000000000000..a8fd2503dbe0
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/social-auth-app-django/default.nix
@@ -0,0 +1,47 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, social-auth-core
+, django
+, python
+, pythonOlder
+}:
+
+buildPythonPackage rec {
+  pname = "social-auth-app-django";
+  version = "5.4.0";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.8";
+
+  src = fetchFromGitHub {
+    owner = "python-social-auth";
+    repo = "social-app-django";
+    rev = "refs/tags/${version}";
+    hash = "sha256-CZF1DA4UUnmGfdmWlBJ0zJIYx1E03a7Z7Y6WJNFU68M=";
+  };
+
+  propagatedBuildInputs = [
+    social-auth-core
+  ];
+
+  pythonImportsCheck = [
+    "social_django"
+  ];
+
+  nativeCheckInputs = [
+    django
+  ];
+
+  checkPhase = ''
+    ${python.interpreter} -m django test --settings="tests.settings"
+  '';
+
+  meta = with lib; {
+    description = "Module for social authentication/registration mechanism";
+    homepage = "https://github.com/python-social-auth/social-app-django";
+    changelog = "https://github.com/python-social-auth/social-app-django/blob/${version}/CHANGELOG.md";
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ n0emis ];
+  };
+}