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

This commit is contained in:
Fabian Affolter
2023-10-18 08:46:11 +02:00
committed by GitHub
parent 69b41146f1
commit 6679012e66
@@ -1,4 +1,10 @@
{ 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 ];
};