1{ lib,
2 fetchPypi,
3 django,
4 djangorestframework,
5 six,
6 buildPythonPackage
7}:
8
9buildPythonPackage rec {
10 pname = "django-rest-auth";
11 version = "0.9.5";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "f11e12175dafeed772f50d740d22caeab27e99a3caca24ec65e66a8d6de16571";
16 };
17
18 propagatedBuildInputs = [ django djangorestframework six ];
19
20 # pypi release does not include tests
21 doCheck = false;
22
23 meta = with lib; {
24 description = "Django app that makes registration and authentication easy";
25 homepage = "https://github.com/Tivix/django-rest-auth";
26 license = licenses.mit;
27 maintainers = with maintainers; [ ];
28 };
29}