depot/third_party/nixpkgs/pkgs/development/python-modules/social-auth-app-django/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

42 lines
1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
social-auth-core,
django,
python,
pythonOlder,
}:
buildPythonPackage rec {
pname = "social-auth-app-django";
version = "5.4.1";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "python-social-auth";
repo = "social-app-django";
rev = "refs/tags/${version}";
hash = "sha256-BvPQo0pXffGYu0tpy5yHT9lJVwOTewBiX5GLeezBrhE=";
};
propagatedBuildInputs = [ social-auth-core ];
pythonImportsCheck = [ "social_django" ];
nativeCheckInputs = [ django ];
checkPhase = ''
${python.interpreter} -m django test --settings="tests.settings"
'';
meta = with lib; {
description = "Module for social authentication/registration mechanism";
homepage = "https://github.com/python-social-auth/social-app-django";
changelog = "https://github.com/python-social-auth/social-app-django/blob/${version}/CHANGELOG.md";
license = licenses.bsd3;
maintainers = with maintainers; [ n0emis ];
};
}