diff options
author | Robert Gerus <ar@bash.org.pl> | 2020-03-08 19:16:42 +0100 |
---|---|---|
committer | Robert Gerus <ar@bash.org.pl> | 2020-03-08 19:16:42 +0100 |
commit | c113e67cf12af0cadd0e2862fce58ae66efbcd33 (patch) | |
tree | 08660646915e3c65b19540c162b964c18760269d /spejstore/python-modules/social-auth-app-django.nix | |
download | ar-nixpkgs-hs-c113e67cf12af0cadd0e2862fce58ae66efbcd33.tar.gz ar-nixpkgs-hs-c113e67cf12af0cadd0e2862fce58ae66efbcd33.tar.bz2 ar-nixpkgs-hs-c113e67cf12af0cadd0e2862fce58ae66efbcd33.zip |
Diffstat (limited to 'spejstore/python-modules/social-auth-app-django.nix')
-rw-r--r-- | spejstore/python-modules/social-auth-app-django.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/spejstore/python-modules/social-auth-app-django.nix b/spejstore/python-modules/social-auth-app-django.nix new file mode 100644 index 0000000..cd838fb --- /dev/null +++ b/spejstore/python-modules/social-auth-app-django.nix @@ -0,0 +1,22 @@ +{ buildPythonPackage, fetchurl +, six +, social-auth-core +}: + +buildPythonPackage rec { + pname = "social-auth-app-django"; + version = "3.1.0"; + src = fetchurl { + url = "https://files.pythonhosted.org/packages/9f/13/3be586914f69fe9d11beee01b938d329589045dfe90076529c82dae97578/social_auth_app_django-3.1.0-py3-none-any.whl"; + sha256 = "1qwsx35qncdjwdja1lfr7b9wjsgwdv70qbmhqfa99xgnnvby6dwj"; + }; + format = "wheel"; + doCheck = false; + buildInputs = []; + checkInputs = []; + nativeBuildInputs = []; + propagatedBuildInputs = [ + six + social-auth-core + ]; +} |