{ lib , buildPythonPackage , django , djangorestframework , fetchPypi , pyjwt , python-jose , setuptools-scm }: buildPythonPackage rec { pname = "djangorestframework-simplejwt"; version = "5.0.0"; src = fetchPypi { pname = "djangorestframework_simplejwt"; inherit version; sha256 = "30b10e7732395c44d21980f773214d2b9bdeadf2a6c6809cd1a7c9abe272873c"; }; nativeBuildInputs = [ setuptools-scm ]; propagatedBuildInputs = [ django djangorestframework pyjwt python-jose ]; # Test raises django.core.exceptions.ImproperlyConfigured doCheck = false; pythonImportsCheck = [ "rest_framework_simplejwt" ]; meta = with lib; { description = "JSON Web Token authentication plugin for Django REST Framework"; homepage = "https://github.com/davesque/django-rest-framework-simplejwt"; license = licenses.mit; maintainers = with maintainers; [ arnoldfarkas ]; }; }