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.6.0";
2020-08-25 03:07:09 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "7adc913ba0d2ed7f46e0b9bf6e86f9bd9248f1c4201722b732b8213e0ea66f9f";
};
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 ];
};
}