13 buildPythonPackage rec {
14 pname = "django-rest-auth";
16 format = "setuptools";
18 src = fetchFromGitHub {
20 repo = "django-rest-auth";
22 hash = "sha256-rCChUHv8sTEFErDCZnPN5b5XVtMJ7JNVZwBYF3d99mY=";
26 substituteInPlace setup.py \
27 --replace "djangorestframework-jwt" "drf-jwt"
30 propagatedBuildInputs = [
42 # tests are icnompatible with current django version
45 pythonImportsCheck = [ "rest_auth" ];
48 description = "Django app that makes registration and authentication easy";
49 homepage = "https://github.com/Tivix/django-rest-auth";
50 license = licenses.mit;