9 buildPythonPackage rec {
10 pname = "djangorestframework-jwt";
14 inherit pname version;
15 sha256 = "19rng6v1sw14mbjp5cplnrgxjnhlj8faalfw02iihi9s5w1k7zjy";
18 propagatedBuildInputs = [ pyjwt django djangorestframework ];
20 # ./runtests.py fails because the project must be tested against a django
21 # installation, there are missing database tables for User, that don't exist.
25 description = "JSON Web Token Authentication support for Django REST Framework";
26 homepage = "https://github.com/GetBlimp/django-rest-framework-jwt";
27 license = licenses.mit;
28 maintainers = [ maintainers.ivegotasthma ];