1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

Merge pull request #84493 from r-ryantm/auto-update/python3.7-django-auth-ldap

python37Packages.django-auth-ldap: 2.1.0 -> 2.1.1
This commit is contained in:
Lancelot SIX 2020-04-06 18:54:43 +02:00 committed by GitHub
commit 3e7d382a82
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,11 +7,11 @@
buildPythonPackage rec {
pname = "django-auth-ldap";
version = "2.1.0";
version = "2.1.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "5f48232c85ddfa33e3573153e6080526ac2eef5e7ec9cf42b5c4ba3c62afb96d";
sha256 = "1j1fwinbkr4khn9i869r22jfdgw2kli0jqrz5shyd36jllsvrfzs";
};
propagatedBuildInputs = [ ldap django ];
@ -22,7 +22,7 @@ buildPythonPackage rec {
meta = with stdenv.lib; {
description = "Django authentication backend that authenticates against an LDAP service";
homepage = https://github.com/django-auth-ldap/django-auth-ldap;
homepage = "https://github.com/django-auth-ldap/django-auth-ldap";
license = licenses.bsd2;
maintainers = with maintainers; [ mmai ];
platforms = platforms.linux;