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