Merge pull request #261734 from r-ryantm/auto-update/python311Packages.social-auth-app-django

python311Packages.social-auth-app-django: 5.3.0 -> 5.4.0
This commit is contained in:
Fabian Affolter 2023-10-19 09:09:07 +02:00 committed by GitHub
commit b4851aa800
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,21 +1,33 @@
{ lib, buildPythonPackage, fetchFromGitHub, social-auth-core, django, python }:
{ lib
, buildPythonPackage
, fetchFromGitHub
, social-auth-core
, django
, python
, pythonOlder
}:
buildPythonPackage rec {
pname = "social-auth-app-django";
version = "5.3.0";
version = "5.4.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "python-social-auth";
repo = "social-app-django";
rev = "refs/tags/${version}";
hash = "sha256-YJsE8YfLaUsBjwehheic6YG+6robWeBzKL3T7V0c8E8=";
hash = "sha256-CZF1DA4UUnmGfdmWlBJ0zJIYx1E03a7Z7Y6WJNFU68M=";
};
propagatedBuildInputs = [
social-auth-core
];
pythonImportsCheck = [ "social_django" ];
pythonImportsCheck = [
"social_django"
];
nativeCheckInputs = [
django
@ -26,8 +38,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 ];
};