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

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
parents b8517f21 d7ee0417
Loading
Loading
Loading
Loading
+18 −5
Original line number Diff line number Diff line
{ 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 ];
  };