12 buildPythonPackage rec {
13 pname = "django-rest-auth";
15 format = "setuptools";
17 src = fetchFromGitHub {
19 repo = "django-rest-auth";
21 hash = "sha256-rCChUHv8sTEFErDCZnPN5b5XVtMJ7JNVZwBYF3d99mY=";
25 substituteInPlace setup.py \
26 --replace "djangorestframework-jwt" "drf-jwt"
29 propagatedBuildInputs = [
41 # tests are icnompatible with current django version
44 pythonImportsCheck = [ "rest_auth" ];
47 description = "Django app that makes registration and authentication easy";
48 homepage = "https://github.com/Tivix/django-rest-auth";
49 license = licenses.mit;
50 maintainers = with maintainers; [ ];