Merge pull request #251901 from r-ryantm/auto-update/python310Packages.djangorestframework-simplejwt

python310Packages.djangorestframework-simplejwt: 5.2.2 -> 5.3.0

authored by Fabian Affolter and committed by GitHub d1d57f39 505dccf6

+13 -3
+13 -3
pkgs/development/python-modules/djangorestframework-simplejwt/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , cryptography 3 4 , django 4 5 , djangorestframework 5 6 , fetchPypi ··· 11 12 12 13 buildPythonPackage rec { 13 14 pname = "djangorestframework-simplejwt"; 14 - version = "5.2.2"; 15 + version = "5.3.0"; 15 16 format = "setuptools"; 16 17 17 18 disabled = pythonOlder "3.7"; ··· 19 20 src = fetchPypi { 20 21 pname = "djangorestframework_simplejwt"; 21 22 inherit version; 22 - hash = "sha256-0n1LysLGOU9njeqLTQ1RHG4Yp/Lriq7rin3mAa63fEI="; 23 + hash = "sha256-jkxd/KjRHAuKZt/YpOP8HGqn6hiNEJB/+RyUL0tS7WY="; 23 24 }; 24 25 25 26 nativeBuildInputs = [ ··· 30 31 django 31 32 djangorestframework 32 33 pyjwt 33 - python-jose 34 34 ]; 35 35 36 + passthru.optional-dependencies = { 37 + python-jose = [ 38 + python-jose 39 + ]; 40 + crypto = [ 41 + cryptography 42 + ]; 43 + }; 44 + 36 45 # Test raises django.core.exceptions.ImproperlyConfigured 37 46 doCheck = false; 38 47 ··· 43 52 meta = with lib; { 44 53 description = "JSON Web Token authentication plugin for Django REST Framework"; 45 54 homepage = "https://github.com/davesque/django-rest-framework-simplejwt"; 55 + changelog = "https://github.com/jazzband/djangorestframework-simplejwt/blob/v${version}/CHANGELOG.md"; 46 56 license = licenses.mit; 47 57 maintainers = with maintainers; [ arnoldfarkas ]; 48 58 };