nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.social-auth-app-django: init at 5.0.0

+36
+34
pkgs/development/python-modules/social-auth-app-django/default.nix
··· 1 + { lib, buildPythonPackage, fetchFromGitHub, social-auth-core, django, python }: 2 + 3 + buildPythonPackage rec { 4 + pname = "social-auth-app-django"; 5 + version = "5.0.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "python-social-auth"; 9 + repo = "social-app-django"; 10 + rev = version; 11 + sha256 = "sha256-ONhdXxclHRpVtijpKEZlmGDhjid/jnTaPq6LQtjxCC4="; 12 + }; 13 + 14 + propagatedBuildInputs = [ 15 + social-auth-core 16 + ]; 17 + 18 + pythonImportsCheck = [ "social_django" ]; 19 + 20 + checkInputs = [ 21 + django 22 + ]; 23 + 24 + checkPhase = '' 25 + ${python.interpreter} -m django test --settings="tests.settings" 26 + ''; 27 + 28 + meta = with lib; { 29 + homepage = "https://github.com/python-social-auth/social-app-django"; 30 + description = "Python Social Auth - Application - Django"; 31 + license = licenses.bsd3; 32 + maintainers = with maintainers; [ n0emis ]; 33 + }; 34 + }
+2
pkgs/top-level/python-packages.nix
··· 9379 9379 9380 9380 socketio-client = callPackage ../development/python-modules/socketio-client { }; 9381 9381 9382 + social-auth-app-django = callPackage ../development/python-modules/social-auth-app-django { }; 9383 + 9382 9384 social-auth-core = callPackage ../development/python-modules/social-auth-core { }; 9383 9385 9384 9386 socialscan = callPackage ../development/python-modules/socialscan { };