mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.djangorestframework-jwt: init at 1.11.0
This commit is contained in:
parent
c3b85e875a
commit
40d07176d2
2 changed files with 32 additions and 0 deletions
|
@ -0,0 +1,30 @@
|
|||
{ lib
|
||||
, fetchPypi
|
||||
, django
|
||||
, pyjwt
|
||||
, djangorestframework
|
||||
, buildPythonPackage
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "djangorestframework-jwt";
|
||||
version = "1.11.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "19rng6v1sw14mbjp5cplnrgxjnhlj8faalfw02iihi9s5w1k7zjy";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pyjwt django djangorestframework ];
|
||||
|
||||
# ./runtests.py fails because the project must be tested against a django
|
||||
# installation, there are missing database tables for User, that don't exist.
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "JSON Web Token Authentication support for Django REST Framework";
|
||||
homepage = https://github.com/GetBlimp/django-rest-framework-jwt;
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.ivegotasthma ];
|
||||
};
|
||||
}
|
|
@ -2289,6 +2289,8 @@ in {
|
|||
|
||||
djangorestframework = callPackage ../development/python-modules/djangorestframework { };
|
||||
|
||||
djangorestframework-jwt = callPackage ../development/python-modules/djangorestframework-jwt { };
|
||||
|
||||
django-raster = callPackage ../development/python-modules/django-raster { };
|
||||
|
||||
django_redis = callPackage ../development/python-modules/django_redis { };
|
||||
|
|
Loading…
Reference in a new issue