summary refs log tree commit diff
path: root/pkgs/development/python-modules/django-auth-ldap
diff options
context:
space:
mode:
authorHenri Bourcereau <henri.bourcereau@gmail.com>2019-01-27 11:46:08 +0100
committerworldofpeace <worldofpeace@protonmail.ch>2019-10-16 17:07:07 -0400
commit177ed2f520816a1f04d13d85e62805c24a1a4512 (patch)
tree4a9bbf79dffd8caf81ac3928012336bc20f4a467 /pkgs/development/python-modules/django-auth-ldap
parentb02ae8e22c7ba341648fd3ed1a8ff7661c211025 (diff)
downloadnixpkgs-177ed2f520816a1f04d13d85e62805c24a1a4512.tar
nixpkgs-177ed2f520816a1f04d13d85e62805c24a1a4512.tar.gz
nixpkgs-177ed2f520816a1f04d13d85e62805c24a1a4512.tar.bz2
nixpkgs-177ed2f520816a1f04d13d85e62805c24a1a4512.tar.lz
nixpkgs-177ed2f520816a1f04d13d85e62805c24a1a4512.tar.xz
nixpkgs-177ed2f520816a1f04d13d85e62805c24a1a4512.tar.zst
nixpkgs-177ed2f520816a1f04d13d85e62805c24a1a4512.zip
pythonPackages.django-auth-ldap: init at 1.7.0
Diffstat (limited to 'pkgs/development/python-modules/django-auth-ldap')
-rw-r--r--pkgs/development/python-modules/django-auth-ldap/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/django-auth-ldap/default.nix b/pkgs/development/python-modules/django-auth-ldap/default.nix
new file mode 100644
index 00000000000..4e2377ffb0f
--- /dev/null
+++ b/pkgs/development/python-modules/django-auth-ldap/default.nix
@@ -0,0 +1,30 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi, isPy27
+, ldap , django_2_2 
+, mock
+}:
+
+buildPythonPackage rec {
+  pname = "django-auth-ldap";
+  version = "2.0.0";
+  disabled = isPy27;
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1samrxf8lic6a4c0lgw31b38s97l8hnaknd7ilyy2plahmm0h03i";
+  };
+
+  propagatedBuildInputs = [ ldap django_2_2 ]; 
+  checkInputs = [ mock ]; 
+
+  # django.core.exceptions.ImproperlyConfigured: Requested setting INSTALLED_APPS, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "Django authentication backend that authenticates against an LDAP service";
+    homepage = https://github.com/django-auth-ldap/django-auth-ldap;
+    license = licenses.bsd2;
+    maintainers = with maintainers; [ mmai ];
+    platforms = platforms.linux;
+  };
+}