c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
34 lines
839 B
Nix
34 lines
839 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, social-auth-core, django, python }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "social-auth-app-django";
|
|
version = "5.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "python-social-auth";
|
|
repo = "social-app-django";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-GLOZfiSXkUnTK8Mxg+5jbxkE6Mo0kW5vMZsPe9G/dpU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
social-auth-core
|
|
];
|
|
|
|
pythonImportsCheck = [ "social_django" ];
|
|
|
|
nativeCheckInputs = [
|
|
django
|
|
];
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} -m django test --settings="tests.settings"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/python-social-auth/social-app-django";
|
|
description = "Python Social Auth - Application - Django";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ n0emis ];
|
|
};
|
|
}
|