nixpkgs/pkgs/development/python-modules/djangorestframework-simplejwt/default.nix

24 lines
722 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, django, djangorestframework, pyjwt }:
buildPythonPackage rec {
pname = "djangorestframework_simplejwt";
version = "4.7.1";
2020-08-25 03:07:09 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "c0e9b617da337becb55e67935eb992fad84f861418e7ab5fb3e77a3fd18d4137";
};
2020-08-25 03:07:09 +01:00
propagatedBuildInputs = [ django djangorestframework pyjwt ];
2020-08-25 03:07:09 +01:00
# Test raises django.core.exceptions.ImproperlyConfigured
doCheck = false;
2020-08-25 03:07:09 +01:00
meta = with lib; {
description = "A minimal JSON Web Token authentication plugin for Django REST Framework";
homepage = "https://github.com/davesque/django-rest-framework-simplejwt";
license = licenses.mit;
maintainers = [ maintainers.arnoldfarkas ];
};
}