summary refs log tree commit diff
path: root/pkgs/development/python-modules/django-rest-auth/default.nix
blob: a6edc98b0cb8ace58be93b8eb7c71275588c48cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib,
  fetchPypi,
  django,
  djangorestframework,
  six,
  buildPythonPackage
}:

buildPythonPackage rec {
  pname = "django-rest-auth";
  version = "0.9.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "f11e12175dafeed772f50d740d22caeab27e99a3caca24ec65e66a8d6de16571";
  };

  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 ];
  };
}