pythonPackages.django-rest-auth: init at 0.9.3

This commit is contained in:
ivegotasthma 2019-01-21 11:28:44 +01:00
parent 90f4df8a4d
commit f7de6e5fb3
No known key found for this signature in database
GPG Key ID: 09AC52AEA87817A4
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib,
fetchPypi,
django,
djangorestframework,
six,
buildPythonPackage
}:
buildPythonPackage rec {
pname = "django-rest-auth";
version = "0.9.3";
src = fetchPypi {
inherit pname version;
sha256 = "ad155a0ed1061b32e3e46c9b25686e397644fd6acfd35d5c03bc6b9d2fc6c82a";
};
propagatedBuildInputs = [ django djangorestframework six ];
# pypi release does not include tests
doCheck = false;
meta = with lib; {
description = "Django app that makes registration and authentication easy";
homepage = https://github.com/Tivix/django-rest-auth;
license = licenses.mit;
maintainers = [ maintainers.ivegotasthma ];
};
}

View File

@ -2252,6 +2252,8 @@ in {
django_polymorphic = callPackage ../development/python-modules/django-polymorphic { };
django-rest-auth = callPackage ../development/python-modules/django-rest-auth { };
django-sampledatahelper = callPackage ../development/python-modules/django-sampledatahelper { };
django-sites = callPackage ../development/python-modules/django-sites { };