mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
python3Packages.social-auth-app-django: init at 5.0.0
This commit is contained in:
parent
6959e91eb6
commit
64225de6ff
@ -0,0 +1,34 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, social-auth-core, django, python }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "social-auth-app-django";
|
||||
version = "5.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "python-social-auth";
|
||||
repo = "social-app-django";
|
||||
rev = version;
|
||||
sha256 = "sha256-ONhdXxclHRpVtijpKEZlmGDhjid/jnTaPq6LQtjxCC4=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
social-auth-core
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "social_django" ];
|
||||
|
||||
checkInputs = [
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -9379,6 +9379,8 @@ in {
|
||||
|
||||
socketio-client = callPackage ../development/python-modules/socketio-client { };
|
||||
|
||||
social-auth-app-django = callPackage ../development/python-modules/social-auth-app-django { };
|
||||
|
||||
social-auth-core = callPackage ../development/python-modules/social-auth-core { };
|
||||
|
||||
socialscan = callPackage ../development/python-modules/socialscan { };
|
||||
|
Loading…
Reference in New Issue
Block a user