Unverified Commit 6679012e authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python311Packages.social-auth-app-django: add changelog to meta

parent 69b41146
Loading
Loading
Loading
Loading
+12 −3
Original line number Diff line number Diff line
{ lib, buildPythonPackage, fetchFromGitHub, social-auth-core, django, python }:
{ lib
, buildPythonPackage
, fetchFromGitHub
, social-auth-core
, django
, python
}:

buildPythonPackage rec {
  pname = "social-auth-app-django";
@@ -15,7 +21,9 @@ buildPythonPackage rec {
    social-auth-core
  ];

  pythonImportsCheck = [ "social_django" ];
  pythonImportsCheck = [
    "social_django"
  ];

  nativeCheckInputs = [
    django
@@ -26,8 +34,9 @@ buildPythonPackage rec {
  '';

  meta = with lib; {
    description = "Module for social authentication/registration mechanism";
    homepage = "https://github.com/python-social-auth/social-app-django";
    description = "Python Social Auth - Application - Django";
    changelog = "https://github.com/python-social-auth/social-app-django/blob/${version}/CHANGELOG.md";
    license = licenses.bsd3;
    maintainers = with maintainers; [ n0emis ];
  };