linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / djangorestframework-simplejwt / default.nix
blob9fb7f882567a42cf18120d9f0bd322e84046b353
1 { lib, buildPythonPackage, fetchPypi, django, djangorestframework, pyjwt }:
3 buildPythonPackage rec {
4   pname = "djangorestframework_simplejwt";
5   version = "4.6.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "7adc913ba0d2ed7f46e0b9bf6e86f9bd9248f1c4201722b732b8213e0ea66f9f";
10   };
12   propagatedBuildInputs = [ django djangorestframework pyjwt ];
14   # Test raises django.core.exceptions.ImproperlyConfigured
15   doCheck = false;
17   meta = with lib; {
18     description = "A minimal JSON Web Token authentication plugin for Django REST Framework";
19     homepage = "https://github.com/davesque/django-rest-framework-simplejwt";
20     license = licenses.mit;
21     maintainers = [ maintainers.arnoldfarkas ];
22   };