Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9588e9c89c56
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 37298b58c603
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 22, 2020

  1. pythonPackages.django-auth-ldap: update django dependency

    Package `django-auth-ldap' requires Django 1.11+ which package `django' satisfies.
    Farkas, Arnold authored and Jon committed Jan 22, 2020
    Copy the full SHA
    37298b5 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/django-auth-ldap/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/django-auth-ldap/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi, isPy27
, ldap , django_2_2
, ldap , django
, mock
}:

@@ -14,7 +14,7 @@ buildPythonPackage rec {
sha256 = "5f48232c85ddfa33e3573153e6080526ac2eef5e7ec9cf42b5c4ba3c62afb96d";
};

propagatedBuildInputs = [ ldap django_2_2 ];
propagatedBuildInputs = [ ldap django ];
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